UNPKG

762 BTypeScriptView Raw
1export interface RestrictActionRepositoryRestrictResponseRootObject {
2 users: RestrictActionRepositoryRestrictResponseUsersItem[];
3 status: string;
4}
5export interface RestrictActionRepositoryRestrictResponseUsersItem {
6 pk: number;
7 username: string;
8 full_name: string;
9 is_private: boolean;
10 profile_pic_url: string;
11 friendship_status: RestrictActionRepositoryRestrictResponseFriendship_status;
12 is_verified: boolean;
13}
14export interface RestrictActionRepositoryRestrictResponseFriendship_status {
15 following: boolean;
16 followed_by: boolean;
17 blocking: boolean;
18 muting: boolean;
19 is_private: boolean;
20 incoming_request: boolean;
21 outgoing_request: boolean;
22 is_bestie: boolean;
23 is_restricted: boolean;
24}