google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
46 lines (45 loc) • 1.96 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 Smart campaign search term view.
*
* @generated from protobuf message google.ads.googleads.v11.resources.SmartCampaignSearchTermView
*/
export interface SmartCampaignSearchTermView {
/**
* Output only. The resource name of the Smart campaign search term view.
* Smart campaign search term view resource names have the form:
*
* `customers/{customer_id}/smartCampaignSearchTermViews/{campaign_id}~{URL-base64_search_term}`
*
* @generated from protobuf field: string resource_name = 1;
*/
resourceName: string;
/**
* Output only. The search term.
*
* @generated from protobuf field: string search_term = 2;
*/
searchTerm: string;
/**
* Output only. The Smart campaign the search term served in.
*
* @generated from protobuf field: string campaign = 3;
*/
campaign: string;
}
declare class SmartCampaignSearchTermView$Type extends MessageType<SmartCampaignSearchTermView> {
constructor();
create(value?: PartialMessage<SmartCampaignSearchTermView>): SmartCampaignSearchTermView;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SmartCampaignSearchTermView): SmartCampaignSearchTermView;
internalBinaryWrite(message: SmartCampaignSearchTermView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.resources.SmartCampaignSearchTermView
*/
export declare const SmartCampaignSearchTermView: SmartCampaignSearchTermView$Type;
export {};