Interface ITweetMedia

The details of a single media content included in a tweet.

interface ITweetMedia {
    thumbnailUrl?: string;
    type: EMediaType;
    url: string;
}

Properties

thumbnailUrl?: string

The thumbnail URL for the video content of the tweet.

The type of media.

url: string

The direct URL to the media.