google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
69 lines (68 loc) • 2.69 kB
TypeScript
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
import type { IBinaryWriter } from "@protobuf-ts/runtime";
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
import type { IBinaryReader } from "@protobuf-ts/runtime";
import type { PartialMessage } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime";
/**
* Performance Max Upgrade status for campaign.
*
* @generated from protobuf message google.ads.googleads.v11.enums.PerformanceMaxUpgradeStatusEnum
*/
export interface PerformanceMaxUpgradeStatusEnum {
}
/**
* Performance Max Upgrade status enum for campaign.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus
*/
export declare enum PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus {
/**
* Not specified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* Used for return value only. Represents value unknown in this version.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* The campaign is eligible for upgrade to a Performance Max campaign.
*
* @generated from protobuf enum value: UPGRADE_ELIBIGLE = 2;
*/
UPGRADE_ELIBIGLE = 2,
/**
* The upgrade to a Performance Max campaign is in progress.
*
* @generated from protobuf enum value: UPGRADE_IN_PROGRESS = 3;
*/
UPGRADE_IN_PROGRESS = 3,
/**
* The upgrade to a Performance Max campaign is complete.
*
* @generated from protobuf enum value: UPGRADE_COMPLETE = 4;
*/
UPGRADE_COMPLETE = 4,
/**
* The upgrade to a Performance Max campaign failed.
* The campaign will still serve as it was before upgrade was attempted.
*
* @generated from protobuf enum value: UPGRADE_FAILED = 5;
*/
UPGRADE_FAILED = 5
}
declare class PerformanceMaxUpgradeStatusEnum$Type extends MessageType<PerformanceMaxUpgradeStatusEnum> {
constructor();
create(value?: PartialMessage<PerformanceMaxUpgradeStatusEnum>): PerformanceMaxUpgradeStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PerformanceMaxUpgradeStatusEnum): PerformanceMaxUpgradeStatusEnum;
internalBinaryWrite(message: PerformanceMaxUpgradeStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.PerformanceMaxUpgradeStatusEnum
*/
export declare const PerformanceMaxUpgradeStatusEnum: PerformanceMaxUpgradeStatusEnum$Type;
export {};