google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
64 lines (63 loc) • 2.1 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 statuses of an ad group.
*
* @generated from protobuf message google.ads.googleads.v11.enums.AdGroupStatusEnum
*/
export interface AdGroupStatusEnum {
}
/**
* The possible statuses of an ad group.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.AdGroupStatusEnum.AdGroupStatus
*/
export declare enum AdGroupStatusEnum_AdGroupStatus {
/**
* The status 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,
/**
* The ad group is enabled.
*
* @generated from protobuf enum value: ENABLED = 2;
*/
ENABLED = 2,
/**
* The ad group is paused.
*
* @generated from protobuf enum value: PAUSED = 3;
*/
PAUSED = 3,
/**
* The ad group is removed.
*
* @generated from protobuf enum value: REMOVED = 4;
*/
REMOVED = 4
}
declare class AdGroupStatusEnum$Type extends MessageType<AdGroupStatusEnum> {
constructor();
create(value?: PartialMessage<AdGroupStatusEnum>): AdGroupStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdGroupStatusEnum): AdGroupStatusEnum;
internalBinaryWrite(message: AdGroupStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.AdGroupStatusEnum
*/
export declare const AdGroupStatusEnum: AdGroupStatusEnum$Type;
export {};