FriendsList

data class FriendsList(val friends: List<FriendInfo> = emptyList(), val incomingRequests: List<FriendInfo> = emptyList(), val outgoingRequests: List<FriendInfo> = emptyList(), val empty: Boolean) : Record

Constructors

Link copied to clipboard
constructor(friends: List<FriendInfo> = emptyList(), incomingRequests: List<FriendInfo> = emptyList(), outgoingRequests: List<FriendInfo> = emptyList(), empty: Boolean)

Properties

Link copied to clipboard
@SerializedName(value = "empty")
val empty: Boolean
Link copied to clipboard
@SerializedName(value = "friends")
val friends: List<FriendInfo>
Link copied to clipboard
@SerializedName(value = "incomingRequests")
val incomingRequests: List<FriendInfo>
Link copied to clipboard
@SerializedName(value = "outgoingRequests")
val outgoingRequests: List<FriendInfo>