UNPKG

634 BTypeScriptView Raw
1import { ProfileEntity } from '../entities/profile.entity';
2export interface PendingFriendshipsFeedResponse {
3 sections: null;
4 users: PendingFriendshipsFeedResponseUsersItem[];
5 big_list: boolean;
6 next_max_id: null;
7 page_size: number;
8 status: string;
9}
10export declare class PendingFriendshipsFeedResponseUsersItem extends ProfileEntity {
11 pk: number;
12 username: string;
13 full_name: string;
14 is_private: boolean;
15 profile_pic_url: string;
16 profile_pic_id?: string;
17 is_verified: boolean;
18 has_anonymous_profile_picture: boolean;
19 is_favorite: boolean;
20 latest_reel_media?: number;
21}