PlayerProfile

data class PlayerProfile(val id: String, val name: String, val skins: List<SkinInfo> = emptyList(), val capes: List<CapeInfo> = emptyList()) : Record

Constructors

Link copied to clipboard
constructor(id: String, name: String, skins: List<SkinInfo> = emptyList(), capes: List<CapeInfo> = emptyList())

Properties

Link copied to clipboard
@SerializedName(value = "capes")
val capes: List<CapeInfo>
Link copied to clipboard
@SerializedName(value = "id")
val id: String
Link copied to clipboard
@SerializedName(value = "name")
val name: String
Link copied to clipboard
@SerializedName(value = "skins")
val skins: List<SkinInfo>