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"; /** * Message describing BillingSetup statuses. * * @generated from protobuf message google.ads.googleads.v11.enums.BillingSetupStatusEnum */ export interface BillingSetupStatusEnum { } /** * The possible statuses of a BillingSetup. * * @generated from protobuf enum google.ads.googleads.v11.enums.BillingSetupStatusEnum.BillingSetupStatus */ export declare enum BillingSetupStatusEnum_BillingSetupStatus { /** * Not specified. * * @generated from protobuf enum value: UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * Used for return value only. Represents value unknown in this version. * * @generated from protobuf enum value: UNKNOWN = 1; */ UNKNOWN = 1, /** * The billing setup is pending approval. * * @generated from protobuf enum value: PENDING = 2; */ PENDING = 2, /** * The billing setup has been approved but the corresponding first budget * has not. This can only occur for billing setups configured for monthly * invoicing. * * @generated from protobuf enum value: APPROVED_HELD = 3; */ APPROVED_HELD = 3, /** * The billing setup has been approved. * * @generated from protobuf enum value: APPROVED = 4; */ APPROVED = 4, /** * The billing setup was cancelled by the user prior to approval. * * @generated from protobuf enum value: CANCELLED = 5; */ CANCELLED = 5 } declare class BillingSetupStatusEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): BillingSetupStatusEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: BillingSetupStatusEnum): BillingSetupStatusEnum; internalBinaryWrite(message: BillingSetupStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.BillingSetupStatusEnum */ export declare const BillingSetupStatusEnum: BillingSetupStatusEnum$Type; export {};