google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
41 lines (40 loc) • 1.69 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 landing page view with metrics aggregated at the unexpanded final URL
* level.
*
* @generated from protobuf message google.ads.googleads.v11.resources.LandingPageView
*/
export interface LandingPageView {
/**
* Output only. The resource name of the landing page view.
* Landing page view resource names have the form:
*
* `customers/{customer_id}/landingPageViews/{unexpanded_final_url_fingerprint}`
*
* @generated from protobuf field: string resource_name = 1;
*/
resourceName: string;
/**
* Output only. The advertiser-specified final URL.
*
* @generated from protobuf field: optional string unexpanded_final_url = 3;
*/
unexpandedFinalUrl?: string;
}
declare class LandingPageView$Type extends MessageType<LandingPageView> {
constructor();
create(value?: PartialMessage<LandingPageView>): LandingPageView;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: LandingPageView): LandingPageView;
internalBinaryWrite(message: LandingPageView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.resources.LandingPageView
*/
export declare const LandingPageView: LandingPageView$Type;
export {};