Google Apps Script API
    Preparing search index...
    interface ReportsCollection {
        CompatibleFields: CompatibleFieldsCollection;
        Files: GoogleAppsScript.Dfareporting.Collection.Reports.FilesCollection;
        get(
            profileId: string,
            reportId: string,
        ): GoogleAppsScript.Dfareporting.Schema.Report;
        insert(
            resource: GoogleAppsScript.Dfareporting.Schema.Report,
            profileId: string,
        ): GoogleAppsScript.Dfareporting.Schema.Report;
        list(profileId: string): ReportList;
        list(profileId: string, optionalArgs: object): ReportList;
        patch(
            resource: GoogleAppsScript.Dfareporting.Schema.Report,
            profileId: string,
            reportId: string,
        ): GoogleAppsScript.Dfareporting.Schema.Report;
        remove(profileId: string, reportId: string): void;
        run(
            profileId: string,
            reportId: string,
        ): GoogleAppsScript.Dfareporting.Schema.File;
        run(
            profileId: string,
            reportId: string,
            optionalArgs: object,
        ): GoogleAppsScript.Dfareporting.Schema.File;
        update(
            resource: GoogleAppsScript.Dfareporting.Schema.Report,
            profileId: string,
            reportId: string,
        ): GoogleAppsScript.Dfareporting.Schema.Report;
    }
    Index

    Properties

    CompatibleFields: CompatibleFieldsCollection

    Methods