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 in payments account service. * * @generated from protobuf message google.ads.googleads.v11.errors.PaymentsAccountErrorEnum */ export interface PaymentsAccountErrorEnum { } /** * Enum describing possible errors in payments account service. * * @generated from protobuf enum google.ads.googleads.v11.errors.PaymentsAccountErrorEnum.PaymentsAccountError */ export declare enum PaymentsAccountErrorEnum_PaymentsAccountError { /** * 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, /** * Manager customers are not supported for payments account service. * * @generated from protobuf enum value: NOT_SUPPORTED_FOR_MANAGER_CUSTOMER = 2; */ NOT_SUPPORTED_FOR_MANAGER_CUSTOMER = 2 } declare class PaymentsAccountErrorEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): PaymentsAccountErrorEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PaymentsAccountErrorEnum): PaymentsAccountErrorEnum; internalBinaryWrite(message: PaymentsAccountErrorEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.errors.PaymentsAccountErrorEnum */ export declare const PaymentsAccountErrorEnum: PaymentsAccountErrorEnum$Type; export {};