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 relationship between an ad group criterion and a label. * * @generated from protobuf message google.ads.googleads.v11.resources.AdGroupCriterionLabel */ export interface AdGroupCriterionLabel { /** * Immutable. The resource name of the ad group criterion label. * Ad group criterion label resource names have the form: * `customers/{customer_id}/adGroupCriterionLabels/{ad_group_id}~{criterion_id}~{label_id}` * * @generated from protobuf field: string resource_name = 1; */ resourceName: string; /** * Immutable. The ad group criterion to which the label is attached. * * @generated from protobuf field: optional string ad_group_criterion = 4; */ adGroupCriterion?: string; /** * Immutable. The label assigned to the ad group criterion. * * @generated from protobuf field: optional string label = 5; */ label?: string; } declare class AdGroupCriterionLabel$Type extends MessageType { constructor(); create(value?: PartialMessage): AdGroupCriterionLabel; internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdGroupCriterionLabel): AdGroupCriterionLabel; internalBinaryWrite(message: AdGroupCriterionLabel, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter; } /** * @generated MessageType for protobuf message google.ads.googleads.v11.resources.AdGroupCriterionLabel */ export declare const AdGroupCriterionLabel: AdGroupCriterionLabel$Type; export {};