A parsed Tweet object.

interface Tweet {
    __raw_UNSTABLE?: LegacyTweetRaw;
    bookmarkCount?: number;
    conversationId?: string;
    hashtags: string[];
    html?: string;
    id?: string;
    inReplyToStatus?: Tweet;
    inReplyToStatusId?: string;
    isEdited?: boolean;
    isPin?: boolean;
    isQuoted?: boolean;
    isReply?: boolean;
    isRetweet?: boolean;
    isSelfThread?: boolean;
    likes?: number;
    mentions: Mention[];
    name?: string;
    permanentUrl?: string;
    photos: Photo[];
    place?: PlaceRaw;
    quotedStatus?: Tweet;
    quotedStatusId?: string;
    replies?: number;
    retweetedStatus?: Tweet;
    retweetedStatusId?: string;
    retweets?: number;
    sensitiveContent?: boolean;
    text?: string;
    thread: Tweet[];
    timeParsed?: Date;
    timestamp?: number;
    urls: string[];
    userId?: string;
    username?: string;
    versions?: string[];
    videos: Video[];
    views?: number;
}

Properties

__raw_UNSTABLE?: LegacyTweetRaw
bookmarkCount?: number
conversationId?: string
hashtags: string[]
html?: string
id?: string
inReplyToStatus?: Tweet
inReplyToStatusId?: string
isEdited?: boolean
isPin?: boolean
isQuoted?: boolean
isReply?: boolean
isRetweet?: boolean
isSelfThread?: boolean
likes?: number
mentions: Mention[]
name?: string
permanentUrl?: string
photos: Photo[]
place?: PlaceRaw
quotedStatus?: Tweet
quotedStatusId?: string
replies?: number
retweetedStatus?: Tweet
retweetedStatusId?: string
retweets?: number
sensitiveContent?: boolean
text?: string
thread: Tweet[]
timeParsed?: Date
timestamp?: number
urls: string[]
userId?: string
username?: string
versions?: string[]
videos: Video[]
views?: number