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.25 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 display ad format settings.
*
* @generated from protobuf message google.ads.googleads.v11.enums.DisplayAdFormatSettingEnum
*/
export interface DisplayAdFormatSettingEnum {
}
/**
* Enumerates display ad format settings.
*
* @generated from protobuf enum google.ads.googleads.v11.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting
*/
export declare enum DisplayAdFormatSettingEnum_DisplayAdFormatSetting {
/**
* 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,
/**
* Text, image and native formats.
*
* @generated from protobuf enum value: ALL_FORMATS = 2;
*/
ALL_FORMATS = 2,
/**
* Text and image formats.
*
* @generated from protobuf enum value: NON_NATIVE = 3;
*/
NON_NATIVE = 3,
/**
* Native format, for example, the format rendering is controlled by the
* publisher and not by Google.
*
* @generated from protobuf enum value: NATIVE = 4;
*/
NATIVE = 4
}
declare class DisplayAdFormatSettingEnum$Type extends MessageType<DisplayAdFormatSettingEnum> {
constructor();
create(value?: PartialMessage<DisplayAdFormatSettingEnum>): DisplayAdFormatSettingEnum;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DisplayAdFormatSettingEnum): DisplayAdFormatSettingEnum;
internalBinaryWrite(message: DisplayAdFormatSettingEnum, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.enums.DisplayAdFormatSettingEnum
*/
export declare const DisplayAdFormatSettingEnum: DisplayAdFormatSettingEnum$Type;
export {};