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.

50 lines (49 loc) 1.75 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 adx errors. * * @generated from protobuf message google.ads.googleads.v11.errors.AdxErrorEnum */ export interface AdxErrorEnum { } /** * Enum describing possible adx errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.AdxErrorEnum.AdxError */ export declare enum AdxErrorEnum_AdxError { /** * 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, /** * Attempt to use non-AdX feature by AdX customer. * * @generated from protobuf enum value: UNSUPPORTED_FEATURE = 2; */ UNSUPPORTED_FEATURE = 2 } declare class AdxErrorEnum$Type extends MessageType<AdxErrorEnum> { constructor(); create(value?: PartialMessage<AdxErrorEnum>): AdxErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdxErrorEnum): AdxErrorEnum; internalBinaryWrite(message: AdxErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.AdxErrorEnum */ export declare const AdxErrorEnum: AdxErrorEnum$Type; export {};