google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
57 lines (56 loc) • 2.32 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 the status of the association between the Budget and the
* Campaign.
*
* @generated from protobuf message google.ads.googleads.v11.enums.BudgetCampaignAssociationStatusEnum
*/
export interface BudgetCampaignAssociationStatusEnum {
}
/**
* Possible statuses of the association between the Budget and the Campaign.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus
*/
export declare enum BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus {
/**
* 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 campaign is currently using the budget.
*
* @generated from protobuf enum value: ENABLED = 2;
*/
ENABLED = 2,
/**
* The campaign is no longer using the budget.
*
* @generated from protobuf enum value: REMOVED = 3;
*/
REMOVED = 3
}
declare class BudgetCampaignAssociationStatusEnum$Type extends MessageType<BudgetCampaignAssociationStatusEnum> {
constructor();
create(value?: PartialMessage<BudgetCampaignAssociationStatusEnum>): BudgetCampaignAssociationStatusEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: BudgetCampaignAssociationStatusEnum): BudgetCampaignAssociationStatusEnum;
internalBinaryWrite(message: BudgetCampaignAssociationStatusEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.BudgetCampaignAssociationStatusEnum
*/
export declare const BudgetCampaignAssociationStatusEnum: BudgetCampaignAssociationStatusEnum$Type;
export {};