Google Apps Script API
    Preparing search index...
    interface UnsampledReportsCollection {
        get(
            accountId: string,
            webPropertyId: string,
            profileId: string,
            unsampledReportId: string,
        ): UnsampledReport;
        insert(
            resource: UnsampledReport,
            accountId: string,
            webPropertyId: string,
            profileId: string,
        ): UnsampledReport;
        list(
            accountId: string,
            webPropertyId: string,
            profileId: string,
        ): UnsampledReports;
        list(
            accountId: string,
            webPropertyId: string,
            profileId: string,
            optionalArgs: any,
        ): UnsampledReports;
        remove(
            accountId: string,
            webPropertyId: string,
            profileId: string,
            unsampledReportId: string,
        ): void;
    }
    Index

    Methods