instagram-private-api
Version:
Instagram private API wrapper for full access to instagram
15 lines (14 loc) • 440 B
TypeScript
export interface FriendshipRepositoryChangeResponseRootObject {
friendship_status: FriendshipRepositoryChangeResponseFriendship_status;
status: string;
}
export interface FriendshipRepositoryChangeResponseFriendship_status {
following: boolean;
followed_by: boolean;
blocking: boolean;
muting: boolean;
is_private: boolean;
incoming_request: boolean;
outgoing_request: boolean;
is_bestie: boolean;
}