google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
56 lines (55 loc) • 2.17 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 a customizer attribute.
*
* @generated from protobuf message google.ads.googleads.v11.enums.CustomizerAttributeStatusEnum
*/
export interface CustomizerAttributeStatusEnum {
}
/**
* The possible statuses of a customizer attribute.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.CustomizerAttributeStatusEnum.CustomizerAttributeStatus
*/
export declare enum CustomizerAttributeStatusEnum_CustomizerAttributeStatus {
/**
* The status has not been specified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* The received value is not known in this version.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* The customizer attribute is enabled.
*
* @generated from protobuf enum value: ENABLED = 2;
*/
ENABLED = 2,
/**
* The customizer attribute is removed.
*
* @generated from protobuf enum value: REMOVED = 3;
*/
REMOVED = 3
}
declare class CustomizerAttributeStatusEnum$Type extends MessageType<CustomizerAttributeStatusEnum> {
constructor();
create(value?: PartialMessage<CustomizerAttributeStatusEnum>): CustomizerAttributeStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CustomizerAttributeStatusEnum): CustomizerAttributeStatusEnum;
internalBinaryWrite(message: CustomizerAttributeStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.CustomizerAttributeStatusEnum
*/
export declare const CustomizerAttributeStatusEnum: CustomizerAttributeStatusEnum$Type;
export {};