google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
74 lines (73 loc) • 2.68 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 ad customizer errors.
*
* @generated from protobuf message google.ads.googleads.v11.errors.AdCustomizerErrorEnum
*/
export interface AdCustomizerErrorEnum {
}
/**
* Enum describing possible ad customizer errors.
*
* @generated from protobuf enum google.ads.googleads.v11.errors.AdCustomizerErrorEnum.AdCustomizerError
*/
export declare enum AdCustomizerErrorEnum_AdCustomizerError {
/**
* 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,
/**
* Invalid date argument in countdown function.
*
* @generated from protobuf enum value: COUNTDOWN_INVALID_DATE_FORMAT = 2;
*/
COUNTDOWN_INVALID_DATE_FORMAT = 2,
/**
* Countdown end date is in the past.
*
* @generated from protobuf enum value: COUNTDOWN_DATE_IN_PAST = 3;
*/
COUNTDOWN_DATE_IN_PAST = 3,
/**
* Invalid locale string in countdown function.
*
* @generated from protobuf enum value: COUNTDOWN_INVALID_LOCALE = 4;
*/
COUNTDOWN_INVALID_LOCALE = 4,
/**
* Days-before argument to countdown function is not positive.
*
* @generated from protobuf enum value: COUNTDOWN_INVALID_START_DAYS_BEFORE = 5;
*/
COUNTDOWN_INVALID_START_DAYS_BEFORE = 5,
/**
* A user list referenced in an IF function does not exist.
*
* @generated from protobuf enum value: UNKNOWN_USER_LIST = 6;
*/
UNKNOWN_USER_LIST = 6
}
declare class AdCustomizerErrorEnum$Type extends MessageType<AdCustomizerErrorEnum> {
constructor();
create(value?: PartialMessage<AdCustomizerErrorEnum>): AdCustomizerErrorEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdCustomizerErrorEnum): AdCustomizerErrorEnum;
internalBinaryWrite(message: AdCustomizerErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.errors.AdCustomizerErrorEnum
*/
export declare const AdCustomizerErrorEnum: AdCustomizerErrorEnum$Type;
export {};