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.52 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 conversion custom variable errors.
*
* @generated from protobuf message google.ads.googleads.v11.errors.ConversionCustomVariableErrorEnum
*/
export interface ConversionCustomVariableErrorEnum {
}
/**
* Enum describing possible conversion custom variable errors.
*
* @generated from protobuf enum google.ads.googleads.v11.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError
*/
export declare enum ConversionCustomVariableErrorEnum_ConversionCustomVariableError {
/**
* Enum unspecified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* The received error code is not known in this version.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* A conversion custom variable with the specified name already exists.
*
* @generated from protobuf enum value: DUPLICATE_NAME = 2;
*/
DUPLICATE_NAME = 2,
/**
* A conversion custom variable with the specified tag already exists.
*
* @generated from protobuf enum value: DUPLICATE_TAG = 3;
*/
DUPLICATE_TAG = 3,
/**
* A conversion custom variable with the specified tag is reserved for other
* uses.
*
* @generated from protobuf enum value: RESERVED_TAG = 4;
*/
RESERVED_TAG = 4
}
declare class ConversionCustomVariableErrorEnum$Type extends MessageType<ConversionCustomVariableErrorEnum> {
constructor();
create(value?: PartialMessage<ConversionCustomVariableErrorEnum>): ConversionCustomVariableErrorEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ConversionCustomVariableErrorEnum): ConversionCustomVariableErrorEnum;
internalBinaryWrite(message: ConversionCustomVariableErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.errors.ConversionCustomVariableErrorEnum
*/
export declare const ConversionCustomVariableErrorEnum: ConversionCustomVariableErrorEnum$Type;
export {};