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) • 1.87 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 status of a label.
*
* @generated from protobuf message google.ads.googleads.v11.enums.LabelStatusEnum
*/
export interface LabelStatusEnum {
}
/**
* Possible statuses of a label.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.LabelStatusEnum.LabelStatus
*/
export declare enum LabelStatusEnum_LabelStatus {
/**
* 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,
/**
* Label is enabled.
*
* @generated from protobuf enum value: ENABLED = 2;
*/
ENABLED = 2,
/**
* Label is removed.
*
* @generated from protobuf enum value: REMOVED = 3;
*/
REMOVED = 3
}
declare class LabelStatusEnum$Type extends MessageType<LabelStatusEnum> {
constructor();
create(value?: PartialMessage<LabelStatusEnum>): LabelStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: LabelStatusEnum): LabelStatusEnum;
internalBinaryWrite(message: LabelStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.LabelStatusEnum
*/
export declare const LabelStatusEnum: LabelStatusEnum$Type;
export {};