SessionProfile

data class SessionProfile(val id: String, val name: String, val legacy: Boolean? = null, val properties: List<TextureProperty> = emptyList()) : Record

Constructors

Link copied to clipboard
constructor(id: String, name: String, legacy: Boolean? = null, properties: List<TextureProperty> = emptyList())

Properties

Link copied to clipboard
@SerializedName(value = "id")
val id: String
Link copied to clipboard
@SerializedName(value = "legacy")
val legacy: Boolean?
Link copied to clipboard
@SerializedName(value = "name")
val name: String
Link copied to clipboard
@SerializedName(value = "properties")
val properties: List<TextureProperty>