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 AccountBudgetProposal statuses. * * @generated from protobuf message google.ads.googleads.v11.enums.AccountBudgetProposalStatusEnum */ export interface AccountBudgetProposalStatusEnum { } /** * The possible statuses of an AccountBudgetProposal. * * @generated from protobuf enum google.ads.googleads.v11.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus */ export declare enum AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus { /** * 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 proposal is pending approval. * * @generated from protobuf enum value: PENDING = 2; */ PENDING = 2, /** * The proposal has been approved but the corresponding billing setup * has not. This can occur for proposals that set up the first budget * when signing up for billing or when performing a change of bill-to * operation. * * @generated from protobuf enum value: APPROVED_HELD = 3; */ APPROVED_HELD = 3, /** * The proposal has been approved. * * @generated from protobuf enum value: APPROVED = 4; */ APPROVED = 4, /** * The proposal has been cancelled by the user. * * @generated from protobuf enum value: CANCELLED = 5; */ CANCELLED = 5, /** * The proposal has been rejected by the user, for example, by rejecting an * acceptance email. * * @generated from protobuf enum value: REJECTED = 6; */ REJECTED = 6 } declare class AccountBudgetProposalStatusEnum$Type extends MessageType { constructor(); create(value?: PartialMessage): AccountBudgetProposalStatusEnum; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AccountBudgetProposalStatusEnum): AccountBudgetProposalStatusEnum; internalBinaryWrite(message: AccountBudgetProposalStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.enums.AccountBudgetProposalStatusEnum */ export declare const AccountBudgetProposalStatusEnum: AccountBudgetProposalStatusEnum$Type; export {};