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"; import { AudienceInfo } from "../common/criteria"; /** * AssetGroupSignal represents a signal in an asset group. The existence of a * signal tells the performance max campaign who's most likely to convert. * Performance Max uses the signal to look for new people with similar or * stronger intent to find conversions across Search, Display, Video, and more. * * @generated from protobuf message google.ads.googleads.v11.resources.AssetGroupSignal */ export interface AssetGroupSignal { /** * Immutable. The resource name of the asset group signal. * Asset group signal resource name have the form: * * `customers/{customer_id}/assetGroupSignals/{asset_group_id}~{signal_id}` * * @generated from protobuf field: string resource_name = 1; */ resourceName: string; /** * Immutable. The asset group which this asset group signal belongs to. * * @generated from protobuf field: string asset_group = 2; */ assetGroup: string; /** * Immutable. The signal(audience criterion) to be used by the performance max campaign. * * @generated from protobuf field: google.ads.googleads.v11.common.AudienceInfo audience = 3; */ audience?: AudienceInfo; } declare class AssetGroupSignal$Type extends MessageType { constructor(); create(value?: PartialMessage): AssetGroupSignal; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AssetGroupSignal): AssetGroupSignal; internalBinaryWrite(message: AssetGroupSignal, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.resources.AssetGroupSignal */ export declare const AssetGroupSignal: AssetGroupSignal$Type; export {};