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.81 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 expanded final URL
* level.
*
* @generated from protobuf message google.ads.googleads.v11.resources.ExpandedLandingPageView
*/
export interface ExpandedLandingPageView {
/**
* Output only. The resource name of the expanded landing page view.
* Expanded landing page view resource names have the form:
*
* `customers/{customer_id}/expandedLandingPageViews/{expanded_final_url_fingerprint}`
*
* @generated from protobuf field: string resource_name = 1;
*/
resourceName: string;
/**
* Output only. The final URL that clicks are directed to.
*
* @generated from protobuf field: optional string expanded_final_url = 3;
*/
expandedFinalUrl?: string;
}
declare class ExpandedLandingPageView$Type extends MessageType<ExpandedLandingPageView> {
constructor();
create(value?: PartialMessage<ExpandedLandingPageView>): ExpandedLandingPageView;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExpandedLandingPageView): ExpandedLandingPageView;
internalBinaryWrite(message: ExpandedLandingPageView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.resources.ExpandedLandingPageView
*/
export declare const ExpandedLandingPageView: ExpandedLandingPageView$Type;
export {};