Interface InternalLinkTypeInstantView

The link must be opened in an Instant View. Call getWebPageInstantView with the given URL to process the link. If Instant View is found, then show it, otherwise, open the fallback URL in an external browser. Subtype of InternalLinkType.

interface InternalLinkTypeInstantView {
    @type: "internalLinkTypeInstantView";
    fallback_url: string;
    url: string;
}

Properties

@type: "internalLinkTypeInstantView"
fallback_url: string

An URL to open if getWebPageInstantView fails.

url: string

URL to be passed to getWebPageInstantView.