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"; /** * An ad group audience view. * Includes performance data from interests and remarketing lists for Display * Network and YouTube Network ads, and remarketing lists for search ads (RLSA), * aggregated at the audience level. * * @generated from protobuf message google.ads.googleads.v11.resources.AdGroupAudienceView */ export interface AdGroupAudienceView { /** * Output only. The resource name of the ad group audience view. * Ad group audience view resource names have the form: * * `customers/{customer_id}/adGroupAudienceViews/{ad_group_id}~{criterion_id}` * * @generated from protobuf field: string resource_name = 1; */ resourceName: string; } declare class AdGroupAudienceView$Type extends MessageType { constructor(); create(value?: PartialMessage): AdGroupAudienceView; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdGroupAudienceView): AdGroupAudienceView; internalBinaryWrite(message: AdGroupAudienceView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.resources.AdGroupAudienceView */ export declare const AdGroupAudienceView: AdGroupAudienceView$Type; export {};