UNPKG

1.46 kBTypeScriptView Raw
1export interface AccountRepositoryCurrentUserResponseRootObject {
2 user: AccountRepositoryCurrentUserResponseUser;
3 status: string;
4}
5export interface AccountRepositoryCurrentUserResponseUser {
6 pk: number;
7 username: string;
8 full_name: string;
9 is_private: boolean;
10 profile_pic_url: string;
11 profile_pic_id: string;
12 is_verified: boolean;
13 has_anonymous_profile_picture: boolean;
14 biography: string;
15 can_link_entities_in_bio: boolean;
16 biography_with_entities: AccountRepositoryCurrentUserResponseBiography_with_entities;
17 external_url: string;
18 has_biography_translation: boolean;
19 reel_auto_archive: string;
20 hd_profile_pic_versions: AccountRepositoryCurrentUserResponseHdProfilePicVersionsItem[];
21 hd_profile_pic_url_info: AccountRepositoryCurrentUserResponseHd_profile_pic_url_info;
22 show_conversion_edit_entry: boolean;
23 allowed_commenter_type: string;
24 birthday: null;
25 phone_number: string;
26 country_code: number;
27 national_number: number;
28 gender: number;
29 email: string;
30}
31export interface AccountRepositoryCurrentUserResponseBiography_with_entities {
32 raw_text: string;
33 entities: any[];
34}
35export interface AccountRepositoryCurrentUserResponseHdProfilePicVersionsItem {
36 width: number;
37 height: number;
38 url: string;
39}
40export interface AccountRepositoryCurrentUserResponseHd_profile_pic_url_info {
41 url: string;
42 width: number;
43 height: number;
44}