Interface TwitterTimelineResponse

interface TwitterTimelineResponse {
    next_cursor: string;
    pinned: Tweet;
    prev_cursor: string;
    status: string;
    timeline: Tweet[];
    user: TwitterProfile;
}

Properties

next_cursor: string
pinned: Tweet
prev_cursor: string
status: string
timeline: Tweet[]