google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
58 lines (57 loc) • 2.25 kB
TypeScript
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 size limit errors.
*
* @generated from protobuf message google.ads.googleads.v11.errors.SizeLimitErrorEnum
*/
export interface SizeLimitErrorEnum {
}
/**
* Enum describing possible size limit errors.
*
* @generated from protobuf enum google.ads.googleads.v11.errors.SizeLimitErrorEnum.SizeLimitError
*/
export declare enum SizeLimitErrorEnum_SizeLimitError {
/**
* 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,
/**
* The number of entries in the request exceeds the system limit, or the
* contents of the operations exceed transaction limits due to their size
* or complexity. Try reducing the number of entries per request.
*
* @generated from protobuf enum value: REQUEST_SIZE_LIMIT_EXCEEDED = 2;
*/
REQUEST_SIZE_LIMIT_EXCEEDED = 2,
/**
* The number of entries in the response exceeds the system limit.
*
* @generated from protobuf enum value: RESPONSE_SIZE_LIMIT_EXCEEDED = 3;
*/
RESPONSE_SIZE_LIMIT_EXCEEDED = 3
}
declare class SizeLimitErrorEnum$Type extends MessageType<SizeLimitErrorEnum> {
constructor();
create(value?: PartialMessage<SizeLimitErrorEnum>): SizeLimitErrorEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SizeLimitErrorEnum): SizeLimitErrorEnum;
internalBinaryWrite(message: SizeLimitErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.errors.SizeLimitErrorEnum
*/
export declare const SizeLimitErrorEnum: SizeLimitErrorEnum$Type;
export {};