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"; /** * A product group view. * * @generated from protobuf message google.ads.googleads.v11.resources.ProductGroupView */ export interface ProductGroupView { /** * Output only. The resource name of the product group view. * Product group view resource names have the form: * * `customers/{customer_id}/productGroupViews/{ad_group_id}~{criterion_id}` * * @generated from protobuf field: string resource_name = 1; */ resourceName: string; } declare class ProductGroupView$Type extends MessageType { constructor(); create(value?: PartialMessage): ProductGroupView; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ProductGroupView): ProductGroupView; internalBinaryWrite(message: ProductGroupView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.resources.ProductGroupView */ export declare const ProductGroupView: ProductGroupView$Type; export {};