UNPKG

1.58 kBTypeScriptView Raw
1export interface MediaInlineChildCommentsFeedResponseRootObject {
2 parent_comment: MediaInlineChildCommentsFeedResponseParent_comment;
3 child_comments: MediaInlineChildCommentsFeedResponseChildCommentsItem[];
4 child_comment_count: number;
5 has_more_tail_child_comments: boolean;
6 has_more_head_child_comments: boolean;
7 next_max_child_cursor: string;
8 num_tail_child_comments: number;
9 status: string;
10}
11export interface MediaInlineChildCommentsFeedResponseParent_comment {
12 pk: string;
13 user_id: number;
14 text: string;
15 type: number;
16 created_at: number;
17 created_at_utc: number;
18 content_type: string;
19 status: string;
20 bit_flags: number;
21 user: MediaInlineChildCommentsFeedResponseUser;
22 did_report_as_spam: boolean;
23 share_enabled: boolean;
24 has_liked_comment: boolean;
25 comment_like_count: number;
26}
27export interface MediaInlineChildCommentsFeedResponseUser {
28 pk: number;
29 username: string;
30 full_name: string;
31 is_private: boolean;
32 profile_pic_url: string;
33 is_verified: boolean;
34 profile_pic_id?: string;
35}
36export interface MediaInlineChildCommentsFeedResponseChildCommentsItem {
37 pk: string;
38 user_id: number;
39 text: string;
40 type: number;
41 created_at: number;
42 created_at_utc: number;
43 content_type: string;
44 status: string;
45 bit_flags: number;
46 user: MediaInlineChildCommentsFeedResponseUser;
47 did_report_as_spam: boolean;
48 share_enabled: boolean;
49 parent_comment_id: string;
50 has_liked_comment: boolean;
51 comment_like_count: number;
52}