ServerInfo

@Serializable
data class ServerInfo(var response: Long = 0, val success: Boolean = false, val error: String? = null, val cooldown: Int? = null, val servers: List<Server>? = null)(source)

Constructors

Link copied to clipboard
constructor(response: Long = 0, success: Boolean = false, error: String? = null, cooldown: Int? = null, servers: List<Server>? = null)

Properties

Link copied to clipboard
@SerialName(value = "Cooldown")
val cooldown: Int? = null
Link copied to clipboard
@SerialName(value = "Error")
val error: String? = null
Link copied to clipboard
@Transient
var response: Long
Link copied to clipboard
@SerialName(value = "Servers")
val servers: List<Server>? = null
Link copied to clipboard
@SerialName(value = "Success")
val success: Boolean = false