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