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.

51 lines (50 loc) 2.02 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 partial failure errors. * * @generated from protobuf message google.ads.googleads.v11.errors.PartialFailureErrorEnum */ export interface PartialFailureErrorEnum { } /** * Enum describing possible partial failure errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.PartialFailureErrorEnum.PartialFailureError */ export declare enum PartialFailureErrorEnum_PartialFailureError { /** * 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 partial failure field was false in the request. * This method requires this field be set to true. * * @generated from protobuf enum value: PARTIAL_FAILURE_MODE_REQUIRED = 2; */ PARTIAL_FAILURE_MODE_REQUIRED = 2 } declare class PartialFailureErrorEnum$Type extends MessageType<PartialFailureErrorEnum> { constructor(); create(value?: PartialMessage<PartialFailureErrorEnum>): PartialFailureErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PartialFailureErrorEnum): PartialFailureErrorEnum; internalBinaryWrite(message: PartialFailureErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.PartialFailureErrorEnum */ export declare const PartialFailureErrorEnum: PartialFailureErrorEnum$Type; export {};