instagram-private-api
Version:
Instagram private API wrapper for full access to instagram
15 lines (14 loc) • 377 B
TypeScript
export interface LiveViewerListResponseRootObject {
users: LiveViewerListResponseUsersItem[];
status: string;
}
export interface LiveViewerListResponseUsersItem {
pk: number;
username: string;
full_name: string;
is_private: boolean;
profile_pic_url: string;
profile_pic_id: string;
is_verified: boolean;
live_with_eligibility: string;
}