Interface ITweetMedia

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

interface ITweetMedia {
    id: string;
    thumbnailUrl?: string;
    type: MediaType;
    url: string;
}

Implemented by

Properties

id: string

The ID of the media.

thumbnailUrl?: string

The thumbnail URL for the video content of the tweet.

type: MediaType

The type of media.

url: string

The direct URL to the media.