1 | export interface AccountRepositoryLoginResponseRootObject {
|
2 | logged_in_user: AccountRepositoryLoginResponseLogged_in_user;
|
3 | status: string;
|
4 | }
|
5 | export interface AccountRepositoryLoginResponseLogged_in_user {
|
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 | can_boost_post: boolean;
|
15 | is_business: boolean;
|
16 | account_type: number;
|
17 | is_call_to_action_enabled: null;
|
18 | can_see_organic_insights: boolean;
|
19 | show_insights_terms: boolean;
|
20 | reel_auto_archive: string;
|
21 | has_placed_orders: boolean;
|
22 | allowed_commenter_type: string;
|
23 | nametag: AccountRepositoryLoginResponseNametag;
|
24 | allow_contacts_sync: boolean;
|
25 | phone_number: string;
|
26 | country_code: number;
|
27 | national_number: number;
|
28 | }
|
29 | export interface AccountRepositoryLoginResponseNametag {
|
30 | mode: number;
|
31 | gradient: string;
|
32 | emoji: string;
|
33 | selfie_sticker: string;
|
34 | }
|