UNPKG

google-ads-api-client

Version:

A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.

51 lines (50 loc) 2.1 kB
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 customizer attribute errors. * * @generated from protobuf message google.ads.googleads.v11.errors.CustomizerAttributeErrorEnum */ export interface CustomizerAttributeErrorEnum { } /** * Enum describing possible customizer attribute errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError */ export declare enum CustomizerAttributeErrorEnum_CustomizerAttributeError { /** * 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, /** * CustomizerAttribute name matches that of another active * CustomizerAttribute. * * @generated from protobuf enum value: DUPLICATE_CUSTOMIZER_ATTRIBUTE_NAME = 2; */ DUPLICATE_CUSTOMIZER_ATTRIBUTE_NAME = 2 } declare class CustomizerAttributeErrorEnum$Type extends MessageType<CustomizerAttributeErrorEnum> { constructor(); create(value?: PartialMessage<CustomizerAttributeErrorEnum>): CustomizerAttributeErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CustomizerAttributeErrorEnum): CustomizerAttributeErrorEnum; internalBinaryWrite(message: CustomizerAttributeErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.CustomizerAttributeErrorEnum */ export declare const CustomizerAttributeErrorEnum: CustomizerAttributeErrorEnum$Type; export {};