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.

56 lines (55 loc) 2 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 collection size errors. * * @generated from protobuf message google.ads.googleads.v11.errors.CollectionSizeErrorEnum */ export interface CollectionSizeErrorEnum { } /** * Enum describing possible collection size errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.CollectionSizeErrorEnum.CollectionSizeError */ export declare enum CollectionSizeErrorEnum_CollectionSizeError { /** * 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, /** * Too few. * * @generated from protobuf enum value: TOO_FEW = 2; */ TOO_FEW = 2, /** * Too many. * * @generated from protobuf enum value: TOO_MANY = 3; */ TOO_MANY = 3 } declare class CollectionSizeErrorEnum$Type extends MessageType<CollectionSizeErrorEnum> { constructor(); create(value?: PartialMessage<CollectionSizeErrorEnum>): CollectionSizeErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CollectionSizeErrorEnum): CollectionSizeErrorEnum; internalBinaryWrite(message: CollectionSizeErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.CollectionSizeErrorEnum */ export declare const CollectionSizeErrorEnum: CollectionSizeErrorEnum$Type; export {};