google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
86 lines (85 loc) • 2.44 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 enumeration of possible positions of the Ad.
*
* @generated from protobuf message google.ads.googleads.v11.enums.SlotEnum
*/
export interface SlotEnum {
}
/**
* Enumerates possible positions of the Ad.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.SlotEnum.Slot
*/
export declare enum SlotEnum_Slot {
/**
* Not specified.
*
* @generated from protobuf enum value: UNSPECIFIED = 0;
*/
UNSPECIFIED = 0,
/**
* The value is unknown in this version.
*
* @generated from protobuf enum value: UNKNOWN = 1;
*/
UNKNOWN = 1,
/**
* Google search: Side.
*
* @generated from protobuf enum value: SEARCH_SIDE = 2;
*/
SEARCH_SIDE = 2,
/**
* Google search: Top.
*
* @generated from protobuf enum value: SEARCH_TOP = 3;
*/
SEARCH_TOP = 3,
/**
* Google search: Other.
*
* @generated from protobuf enum value: SEARCH_OTHER = 4;
*/
SEARCH_OTHER = 4,
/**
* Google Display Network.
*
* @generated from protobuf enum value: CONTENT = 5;
*/
CONTENT = 5,
/**
* Search partners: Top.
*
* @generated from protobuf enum value: SEARCH_PARTNER_TOP = 6;
*/
SEARCH_PARTNER_TOP = 6,
/**
* Search partners: Other.
*
* @generated from protobuf enum value: SEARCH_PARTNER_OTHER = 7;
*/
SEARCH_PARTNER_OTHER = 7,
/**
* Cross-network.
*
* @generated from protobuf enum value: MIXED = 8;
*/
MIXED = 8
}
declare class SlotEnum$Type extends MessageType<SlotEnum> {
constructor();
create(value?: PartialMessage<SlotEnum>): SlotEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SlotEnum): SlotEnum;
internalBinaryWrite(message: SlotEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.SlotEnum
*/
export declare const SlotEnum: SlotEnum$Type;
export {};