google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
59 lines (58 loc) • 2.19 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";
/**
* Container for enum describing possible ad rotation modes of ads within an
* ad group.
*
* @generated from protobuf message google.ads.googleads.v11.enums.AdGroupAdRotationModeEnum
*/
export interface AdGroupAdRotationModeEnum {
}
/**
* The possible ad rotation modes of an ad group.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode
*/
export declare enum AdGroupAdRotationModeEnum_AdGroupAdRotationMode {
/**
* The ad rotation mode has not been specified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* The received value is not known in this version.
*
* This is a response-only value.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* Optimize ad group ads based on clicks or conversions.
*
* @generated from protobuf enum value: OPTIMIZE = 2;
*/
OPTIMIZE = 2,
/**
* Rotate evenly forever.
*
* @generated from protobuf enum value: ROTATE_FOREVER = 3;
*/
ROTATE_FOREVER = 3
}
declare class AdGroupAdRotationModeEnum$Type extends MessageType<AdGroupAdRotationModeEnum> {
constructor();
create(value?: PartialMessage<AdGroupAdRotationModeEnum>): AdGroupAdRotationModeEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdGroupAdRotationModeEnum): AdGroupAdRotationModeEnum;
internalBinaryWrite(message: AdGroupAdRotationModeEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.AdGroupAdRotationModeEnum
*/
export declare const AdGroupAdRotationModeEnum: AdGroupAdRotationModeEnum$Type;
export {};