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) 1.91 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 errors returned from * the ReachPlanService. * * @generated from protobuf message google.ads.googleads.v11.errors.ReachPlanErrorEnum */ export interface ReachPlanErrorEnum { } /** * Enum describing possible errors from ReachPlanService. * * @generated from protobuf enum google.ads.googleads.v11.errors.ReachPlanErrorEnum.ReachPlanError */ export declare enum ReachPlanErrorEnum_ReachPlanError { /** * 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, /** * Not forecastable due to missing rate card data. * * @generated from protobuf enum value: NOT_FORECASTABLE_MISSING_RATE = 2; */ NOT_FORECASTABLE_MISSING_RATE = 2 } declare class ReachPlanErrorEnum$Type extends MessageType<ReachPlanErrorEnum> { constructor(); create(value?: PartialMessage<ReachPlanErrorEnum>): ReachPlanErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ReachPlanErrorEnum): ReachPlanErrorEnum; internalBinaryWrite(message: ReachPlanErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.ReachPlanErrorEnum */ export declare const ReachPlanErrorEnum: ReachPlanErrorEnum$Type; export {};