Interface GoogleAdsNodeParameters

Source
interface GoogleAdsNodeParameters {
    additionalOptions?: {
        campaignStatus?:
            | "all"
            | "ENABLED"
            | "PAUSED"
            | "REMOVED";
        dateRange?: | "allTime"
        | "TODAY"
        | "YESTERDAY"
        | "LAST_7_DAYS"
        | "LAST_BUSINESS_WEEK"
        | "THIS_MONTH"
        | "LAST_MONTH"
        | "LAST_14_DAYS"
        | "LAST_30_DAYS";
    };
    campaignId?: string;
    clientCustomerId?: string;
    managerCustomerId?: string;
    operation?: "get"
    | "getAll";
    resource?: "campaign";
}

Properties§

§readonly additionalOptions?: { ... }

Additional options for fetching campaigns Default: {}

§readonly campaignId?: string

ID of the campaign

§readonly clientCustomerId?: string
§readonly managerCustomerId?: string
§readonly operation?: "get" | "getAll"

Default: "getAll"

§readonly resource?: "campaign"

Default: "campaign"