Interface LinkPreviewTypeExternalAudio

The link is a link to an audio file. Subtype of LinkPreviewType.

interface LinkPreviewTypeExternalAudio {
    @type: "linkPreviewTypeExternalAudio";
    duration: number;
    mime_type: string;
    url: string;
}

Properties

@type: "linkPreviewTypeExternalAudio"
duration: number

Duration of the audio, in seconds; 0 if unknown.

mime_type: string

MIME type of the audio file.

url: string

URL of the audio file.