Interface IRawTweet

Represents the raw data of a single Tweet.

interface IRawTweet {
    __typename: string;
    core: ITweetCore;
    edit_control: ITweetEditControl;
    edit_perspective: ITweetEditPerspective;
    is_translatable: boolean;
    legacy: ITweetLegacy;
    note_tweet: ITweetNote;
    quick_promote_eligibility: ITweetQuickPromoteEligibilityInfo;
    quoted_status_result: IRawDataResult<
        IRawTweet
        | IRawLimitedVisibilityTweet,
    >;
    rest_id: string;
    source: string;
    views: ITweetViews;
}

Properties

__typename: string
core: ITweetCore
edit_control: ITweetEditControl
edit_perspective: ITweetEditPerspective
is_translatable: boolean
legacy: ITweetLegacy
note_tweet: ITweetNote
quick_promote_eligibility: ITweetQuickPromoteEligibilityInfo
rest_id: string
source: string
views: ITweetViews