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 { constructor(); create(value?: PartialMessage): 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 {};