UNPKG

783 BTypeScriptView Raw
1export interface StoryQuizParticipantsFeedResponseRootObject {
2 participant_info: StoryQuizParticipantsFeedResponseParticipant_info;
3 status: string;
4}
5export interface StoryQuizParticipantsFeedResponseParticipant_info {
6 quiz_id: string;
7 participants: StoryQuizParticipantsFeedResponseParticipantsItem[];
8 max_id: null;
9 more_available: boolean;
10}
11export interface StoryQuizParticipantsFeedResponseParticipantsItem {
12 user: StoryQuizParticipantsFeedResponseUser;
13 answer: number;
14 ts: number;
15}
16export interface StoryQuizParticipantsFeedResponseUser {
17 pk: number;
18 username: string;
19 full_name: string;
20 is_private: boolean;
21 profile_pic_url: string;
22 profile_pic_id: string;
23 is_verified: boolean;
24 latest_reel_media: number;
25}