Interface LinkBlock

An NPF link type content block.

interface LinkBlock {
    author?: string;
    description?: string;
    display_url?: string;
    poster?: VisualMedia[];
    site_name?: string;
    title?: string;
    type: "link";
    url: string;
}

Properties

author?: string

The author of the link's content.

description?: string

The description of where the link goes.

display_url?: string
poster?: VisualMedia[]

An image media object to use as a "poster" for the link.

site_name?: string

The name of the site being linked to.

title?: string

The title of where the link goes.

type
url: string

The URL to use for the link block.