google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
78 lines (77 loc) • 2.88 kB
TypeScript
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<AccountBudgetProposalStatusEnum> {
constructor();
create(value?: PartialMessage<AccountBudgetProposalStatusEnum>): 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 {};