google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
42 lines (41 loc) • 1.87 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 paid organic search term view providing a view of search stats across
* ads and organic listings aggregated by search term at the ad group level.
*
* @generated from protobuf message google.ads.googleads.v11.resources.PaidOrganicSearchTermView
*/
export interface PaidOrganicSearchTermView {
/**
* Output only. The resource name of the search term view.
* Search term view resource names have the form:
*
* `customers/{customer_id}/paidOrganicSearchTermViews/{campaign_id}~
* {ad_group_id}~{URL-base64 search term}`
*
* @generated from protobuf field: string resource_name = 1;
*/
resourceName: string;
/**
* Output only. The search term.
*
* @generated from protobuf field: optional string search_term = 3;
*/
searchTerm?: string;
}
declare class PaidOrganicSearchTermView$Type extends MessageType<PaidOrganicSearchTermView> {
constructor();
create(value?: PartialMessage<PaidOrganicSearchTermView>): PaidOrganicSearchTermView;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PaidOrganicSearchTermView): PaidOrganicSearchTermView;
internalBinaryWrite(message: PaidOrganicSearchTermView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.resources.PaidOrganicSearchTermView
*/
export declare const PaidOrganicSearchTermView: PaidOrganicSearchTermView$Type;
export {};