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.

44 lines (43 loc) 1.82 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 ad group customizer errors. * * @generated from protobuf message google.ads.googleads.v11.errors.AdGroupCustomizerErrorEnum */ export interface AdGroupCustomizerErrorEnum { } /** * Enum describing possible ad group customizer errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError */ export declare enum AdGroupCustomizerErrorEnum_AdGroupCustomizerError { /** * 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 } declare class AdGroupCustomizerErrorEnum$Type extends MessageType<AdGroupCustomizerErrorEnum> { constructor(); create(value?: PartialMessage<AdGroupCustomizerErrorEnum>): AdGroupCustomizerErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdGroupCustomizerErrorEnum): AdGroupCustomizerErrorEnum; internalBinaryWrite(message: AdGroupCustomizerErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.AdGroupCustomizerErrorEnum */ export declare const AdGroupCustomizerErrorEnum: AdGroupCustomizerErrorEnum$Type; export {};