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§

Source§

readonly 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";
}

Additional options for fetching campaigns Default: {}

Source§

readonly campaignId?: string

ID of the campaign

Source§

readonly clientCustomerId?: string

Source§

readonly managerCustomerId?: string

Source§

readonly operation?: "get" | "getAll"

Default: "getAll"

Source§

readonly resource?: "campaign"

Default: "campaign"