google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
68 lines (67 loc) • 2.58 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 seasonality event scopes. The two types of seasonality
* events are BiddingSeasonalityAdjustments and BiddingDataExclusions.
*
* @generated from protobuf message google.ads.googleads.v11.enums.SeasonalityEventScopeEnum
*/
export interface SeasonalityEventScopeEnum {
}
/**
* The possible scopes of a Seasonality Event.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.SeasonalityEventScopeEnum.SeasonalityEventScope
*/
export declare enum SeasonalityEventScopeEnum_SeasonalityEventScope {
/**
* No value has been specified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* The received value is not known in this version.
*
* This is a response-only value.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* The seasonality event is applied to all the customer's traffic for
* supported advertising channel types and device types. The CUSTOMER scope
* cannot be used in mutates.
*
* @generated from protobuf enum value: CUSTOMER = 2;
*/
CUSTOMER = 2,
/**
* The seasonality event is applied to all specified campaigns.
*
* @generated from protobuf enum value: CAMPAIGN = 4;
*/
CAMPAIGN = 4,
/**
* The seasonality event is applied to all campaigns that belong to
* specified channel types.
*
* @generated from protobuf enum value: CHANNEL = 5;
*/
CHANNEL = 5
}
declare class SeasonalityEventScopeEnum$Type extends MessageType<SeasonalityEventScopeEnum> {
constructor();
create(value?: PartialMessage<SeasonalityEventScopeEnum>): SeasonalityEventScopeEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SeasonalityEventScopeEnum): SeasonalityEventScopeEnum;
internalBinaryWrite(message: SeasonalityEventScopeEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.SeasonalityEventScopeEnum
*/
export declare const SeasonalityEventScopeEnum: SeasonalityEventScopeEnum$Type;
export {};