Interface IRawTweetHistoryResponse

Represents the raw response received when fetching a tweet's edit history.

interface IRawTweetHistoryResponse {
    data?: {
        tweet_result_by_rest_id?: {
            result?: {
                edit_history_timeline?: { timeline?: ITweetHistoryTimeline };
            };
        };
    };
}

Properties

Properties

data?: {
    tweet_result_by_rest_id?: {
        result?: {
            edit_history_timeline?: { timeline?: ITweetHistoryTimeline };
        };
    };
}