google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
64 lines (63 loc) • 2.33 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";
/**
* Container for enum describing possible bidding sources.
*
* @generated from protobuf message google.ads.googleads.v11.enums.BiddingSourceEnum
*/
export interface BiddingSourceEnum {
}
/**
* Indicates where a bid or target is defined. For example, an ad group
* criterion may define a cpc bid directly, or it can inherit its cpc bid from
* the ad group.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.BiddingSourceEnum.BiddingSource
*/
export declare enum BiddingSourceEnum_BiddingSource {
/**
* 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,
/**
* Effective bid or target is inherited from campaign bidding strategy.
*
* @generated from protobuf enum value: CAMPAIGN_BIDDING_STRATEGY = 5;
*/
CAMPAIGN_BIDDING_STRATEGY = 5,
/**
* The bid or target is defined on the ad group.
*
* @generated from protobuf enum value: AD_GROUP = 6;
*/
AD_GROUP = 6,
/**
* The bid or target is defined on the ad group criterion.
*
* @generated from protobuf enum value: AD_GROUP_CRITERION = 7;
*/
AD_GROUP_CRITERION = 7
}
declare class BiddingSourceEnum$Type extends MessageType<BiddingSourceEnum> {
constructor();
create(value?: PartialMessage<BiddingSourceEnum>): BiddingSourceEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: BiddingSourceEnum): BiddingSourceEnum;
internalBinaryWrite(message: BiddingSourceEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.BiddingSourceEnum
*/
export declare const BiddingSourceEnum: BiddingSourceEnum$Type;
export {};