google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
33 lines (32 loc) • 1.57 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";
/**
* Settings for the Display Campaign Optimizer, initially named "Explorer".
* Learn more about
* [automatic targeting](https://support.google.com/google-ads/answer/190596).
*
* @generated from protobuf message google.ads.googleads.v11.common.ExplorerAutoOptimizerSetting
*/
export interface ExplorerAutoOptimizerSetting {
/**
* Indicates whether the optimizer is turned on.
*
* @generated from protobuf field: optional bool opt_in = 2;
*/
optIn?: boolean;
}
declare class ExplorerAutoOptimizerSetting$Type extends MessageType<ExplorerAutoOptimizerSetting> {
constructor();
create(value?: PartialMessage<ExplorerAutoOptimizerSetting>): ExplorerAutoOptimizerSetting;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExplorerAutoOptimizerSetting): ExplorerAutoOptimizerSetting;
internalBinaryWrite(message: ExplorerAutoOptimizerSetting, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.common.ExplorerAutoOptimizerSetting
*/
export declare const ExplorerAutoOptimizerSetting: ExplorerAutoOptimizerSetting$Type;
export {};