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.

75 lines (74 loc) 2.65 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 invoice errors. * * @generated from protobuf message google.ads.googleads.v11.errors.InvoiceErrorEnum */ export interface InvoiceErrorEnum { } /** * Enum describing possible invoice errors. * * @generated from protobuf enum google.ads.googleads.v11.errors.InvoiceErrorEnum.InvoiceError */ export declare enum InvoiceErrorEnum_InvoiceError { /** * 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, /** * Cannot request invoices issued before 2019-01-01. * * @generated from protobuf enum value: YEAR_MONTH_TOO_OLD = 2; */ YEAR_MONTH_TOO_OLD = 2, /** * Cannot request invoices for customer who doesn't receive invoices. * * @generated from protobuf enum value: NOT_INVOICED_CUSTOMER = 3; */ NOT_INVOICED_CUSTOMER = 3, /** * Cannot request invoices for a non approved billing setup. * * @generated from protobuf enum value: BILLING_SETUP_NOT_APPROVED = 4; */ BILLING_SETUP_NOT_APPROVED = 4, /** * Cannot request invoices for a billing setup that is not on monthly * invoicing. * * @generated from protobuf enum value: BILLING_SETUP_NOT_ON_MONTHLY_INVOICING = 5; */ BILLING_SETUP_NOT_ON_MONTHLY_INVOICING = 5, /** * Cannot request invoices for a non serving customer. * * @generated from protobuf enum value: NON_SERVING_CUSTOMER = 6; */ NON_SERVING_CUSTOMER = 6 } declare class InvoiceErrorEnum$Type extends MessageType<InvoiceErrorEnum> { constructor(); create(value?: PartialMessage<InvoiceErrorEnum>): InvoiceErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: InvoiceErrorEnum): InvoiceErrorEnum; internalBinaryWrite(message: InvoiceErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.InvoiceErrorEnum */ export declare const InvoiceErrorEnum: InvoiceErrorEnum$Type; export {};