google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
63 lines (62 loc) • 2.23 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 operations for the ChangeStatus resource.
*
* @generated from protobuf message google.ads.googleads.v11.enums.ChangeStatusOperationEnum
*/
export interface ChangeStatusOperationEnum {
}
/**
* Status of the changed resource
*
* @generated from protobuf enum google.ads.googleads.v11.enums.ChangeStatusOperationEnum.ChangeStatusOperation
*/
export declare enum ChangeStatusOperationEnum_ChangeStatusOperation {
/**
* No value has been specified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* Used for return value only. Represents an unclassified resource unknown
* in this version.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* The resource was created.
*
* @generated from protobuf enum value: ADDED = 2;
*/
ADDED = 2,
/**
* The resource was modified.
*
* @generated from protobuf enum value: CHANGED = 3;
*/
CHANGED = 3,
/**
* The resource was removed.
*
* @generated from protobuf enum value: REMOVED = 4;
*/
REMOVED = 4
}
declare class ChangeStatusOperationEnum$Type extends MessageType<ChangeStatusOperationEnum> {
constructor();
create(value?: PartialMessage<ChangeStatusOperationEnum>): ChangeStatusOperationEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ChangeStatusOperationEnum): ChangeStatusOperationEnum;
internalBinaryWrite(message: ChangeStatusOperationEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.ChangeStatusOperationEnum
*/
export declare const ChangeStatusOperationEnum: ChangeStatusOperationEnum$Type;
export {};