1 | export interface MediaRepositoryCommentResponse {
|
2 | comment: MediaRepositoryCommentResponseComment;
|
3 | status: string;
|
4 | }
|
5 | export interface MediaRepositoryCommentResponseComment {
|
6 | content_type: string;
|
7 | user: MediaRepositoryCommentResponseUser;
|
8 | pk: string;
|
9 | text: string;
|
10 | type: number;
|
11 | created_at: number;
|
12 | created_at_utc: number;
|
13 | media_id: string;
|
14 | status: string;
|
15 | share_enabled: boolean;
|
16 | }
|
17 | export interface MediaRepositoryCommentResponseUser {
|
18 | pk: number;
|
19 | username: string;
|
20 | full_name: string;
|
21 | is_private: boolean;
|
22 | profile_pic_url: string;
|
23 | profile_pic_id: string;
|
24 | is_verified: boolean;
|
25 | has_anonymous_profile_picture: boolean;
|
26 | reel_auto_archive: string;
|
27 | allowed_commenter_type: string;
|
28 | }
|