google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
35 lines (34 loc) • 1.44 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 location view summarizes the performance of campaigns by
* Location criteria.
*
* @generated from protobuf message google.ads.googleads.v11.resources.LocationView
*/
export interface LocationView {
/**
* Output only. The resource name of the location view.
* Location view resource names have the form:
*
* `customers/{customer_id}/locationViews/{campaign_id}~{criterion_id}`
*
* @generated from protobuf field: string resource_name = 1;
*/
resourceName: string;
}
declare class LocationView$Type extends MessageType<LocationView> {
constructor();
create(value?: PartialMessage<LocationView>): LocationView;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: LocationView): LocationView;
internalBinaryWrite(message: LocationView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.resources.LocationView
*/
export declare const LocationView: LocationView$Type;
export {};