Interface RelatedContentSource

Represents a related content source.

Remarks


- Available since v2.14.2.

interface RelatedContentSource {
    duration?: string;
    image: string;
    link?: string;
    source?: SourceDescription;
    title?: string;
}

Properties

duration?: string

The duration of the related content source.

image: string

The image of the related content source.

link?: string

The target URL for the related content source.

Remarks


- Mutually exclusive with RelatedContentSource.source.
- Required if RelatedContentSource.source is not present.

The source description of the related content source.

Remarks


- Mutually exclusive with RelatedContentSource.link.
- Required if RelatedContentSource.link is not present.

title?: string

The title of the related content source.