google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
63 lines (62 loc) • 2.29 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 the level on which the cap is to be applied.
*
* @generated from protobuf message google.ads.googleads.v11.enums.FrequencyCapLevelEnum
*/
export interface FrequencyCapLevelEnum {
}
/**
* The level on which the cap is to be applied (e.g ad group ad, ad group).
* Cap is applied to all the resources of this level.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.FrequencyCapLevelEnum.FrequencyCapLevel
*/
export declare enum FrequencyCapLevelEnum_FrequencyCapLevel {
/**
* 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 cap is applied at the ad group ad level.
*
* @generated from protobuf enum value: AD_GROUP_AD = 2;
*/
AD_GROUP_AD = 2,
/**
* The cap is applied at the ad group level.
*
* @generated from protobuf enum value: AD_GROUP = 3;
*/
AD_GROUP = 3,
/**
* The cap is applied at the campaign level.
*
* @generated from protobuf enum value: CAMPAIGN = 4;
*/
CAMPAIGN = 4
}
declare class FrequencyCapLevelEnum$Type extends MessageType<FrequencyCapLevelEnum> {
constructor();
create(value?: PartialMessage<FrequencyCapLevelEnum>): FrequencyCapLevelEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FrequencyCapLevelEnum): FrequencyCapLevelEnum;
internalBinaryWrite(message: FrequencyCapLevelEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.FrequencyCapLevelEnum
*/
export declare const FrequencyCapLevelEnum: FrequencyCapLevelEnum$Type;
export {};