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 { constructor(); create(value?: PartialMessage): 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 {};