google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
45 lines (44 loc) • 1.79 kB
TypeScript
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 ad and a label.
*
* @generated from protobuf message google.ads.googleads.v11.resources.AdGroupAdLabel
*/
export interface AdGroupAdLabel {
/**
* Immutable. The resource name of the ad group ad label.
* Ad group ad label resource names have the form:
* `customers/{customer_id}/adGroupAdLabels/{ad_group_id}~{ad_id}~{label_id}`
*
* @generated from protobuf field: string resource_name = 1;
*/
resourceName: string;
/**
* Immutable. The ad group ad to which the label is attached.
*
* @generated from protobuf field: optional string ad_group_ad = 4;
*/
adGroupAd?: string;
/**
* Immutable. The label assigned to the ad group ad.
*
* @generated from protobuf field: optional string label = 5;
*/
label?: string;
}
declare class AdGroupAdLabel$Type extends MessageType<AdGroupAdLabel> {
constructor();
create(value?: PartialMessage<AdGroupAdLabel>): AdGroupAdLabel;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AdGroupAdLabel): AdGroupAdLabel;
internalBinaryWrite(message: AdGroupAdLabel, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.resources.AdGroupAdLabel
*/
export declare const AdGroupAdLabel: AdGroupAdLabel$Type;
export {};