RawPlayerProfile

@JsonClass(generateAdapter = true)
data class RawPlayerProfile(val id: String, val name: String, val legacy: Boolean = false, val properties: List<RawPlayerProfile.Property>)

The JSON Element that to be processed.

Constructors

Link copied to clipboard
constructor(id: String, name: String, legacy: Boolean = false, properties: List<RawPlayerProfile.Property>)

Types

Link copied to clipboard
@JsonClass(generateAdapter = true)
data class Property(val name: String, val value: String)

Properties

Link copied to clipboard
val id: String
Link copied to clipboard
val legacy: Boolean = false
Link copied to clipboard
Link copied to clipboard