1 | export interface LiveGetQuestionsResponseRootObject {
|
2 | questions: LiveGetQuestionsResponseQuestionsItem[];
|
3 | status: string;
|
4 | }
|
5 | export interface LiveGetQuestionsResponseQuestionsItem {
|
6 | text: string;
|
7 | qid: string;
|
8 | source: string;
|
9 | user: LiveGetQuestionsResponseUser;
|
10 | story_sticker_text: string;
|
11 | timestamp: number;
|
12 | }
|
13 | export interface LiveGetQuestionsResponseUser {
|
14 | pk: number;
|
15 | username: string;
|
16 | full_name: string;
|
17 | is_private: boolean;
|
18 | profile_pic_url: string;
|
19 | profile_pic_id: string;
|
20 | is_verified: boolean;
|
21 | }
|