1 | export interface StoryQuestionResponsesFeedResponseRootObject {
|
2 | responder_info: StoryQuestionResponsesFeedResponseResponder_info;
|
3 | status: string;
|
4 | }
|
5 | export interface StoryQuestionResponsesFeedResponseResponder_info {
|
6 | question_id: string;
|
7 | question: string;
|
8 | question_type: string;
|
9 | background_color: string;
|
10 | text_color: string;
|
11 | responders: StoryQuestionResponsesFeedResponseRespondersItem[];
|
12 | max_id: null;
|
13 | more_available: boolean;
|
14 | question_response_count: number;
|
15 | unanswered_response_count: number;
|
16 | latest_question_response_time: number;
|
17 | }
|
18 | export interface StoryQuestionResponsesFeedResponseRespondersItem {
|
19 | response: string;
|
20 | has_shared_response: boolean;
|
21 | id: string;
|
22 | user: StoryQuestionResponsesFeedResponseUser;
|
23 | ts: number;
|
24 | }
|
25 | export interface StoryQuestionResponsesFeedResponseUser {
|
26 | pk: number;
|
27 | username: string;
|
28 | full_name: string;
|
29 | is_private: boolean;
|
30 | profile_pic_url: string;
|
31 | profile_pic_id: string;
|
32 | is_verified: boolean;
|
33 | }
|