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.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 operator errors. * * @generated from protobuf message google.ads.googleads.v11.errors.OperatorErrorEnum */ export interface OperatorErrorEnum { } /** * Enum describing possible operator errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.OperatorErrorEnum.OperatorError */ export declare enum OperatorErrorEnum_OperatorError { /** * 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, /** * Operator not supported. * * @generated from protobuf enum value: OPERATOR_NOT_SUPPORTED = 2; */ OPERATOR_NOT_SUPPORTED = 2 } declare class OperatorErrorEnum$Type extends MessageType<OperatorErrorEnum> { constructor(); create(value?: PartialMessage<OperatorErrorEnum>): OperatorErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: OperatorErrorEnum): OperatorErrorEnum; internalBinaryWrite(message: OperatorErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.OperatorErrorEnum */ export declare const OperatorErrorEnum: OperatorErrorEnum$Type; export {};