UNPKG

470 BTypeScriptView Raw
1export interface AddressBookRepositoryLinkResponseRootObject {
2 users: AddressBookRepositoryLinkResponseUsersItem[];
3 warning: string;
4 status: string;
5}
6export interface AddressBookRepositoryLinkResponseUsersItem {
7 pk: number;
8 username: string;
9 full_name: string;
10 is_private: boolean;
11 profile_pic_url: string;
12 profile_pic_id: string;
13 is_verified: boolean;
14 has_anonymous_profile_picture: boolean;
15 addressbook_name: string;
16}