Interface RichTextUrl

A rich text URL link. Subtype of RichText.

interface RichTextUrl {
    @type: "richTextUrl";
    is_cached?: boolean;
    text: RichText;
    url: string;
}

Properties

@type: "richTextUrl"
is_cached?: boolean

True, if the URL has cached instant view server-side.

text: RichText

Text.

url: string

URL.