Device

@Serializable
data class Device(val id: String? = null, val isActive: Boolean? = null, val isPrivateSession: Boolean? = null, val isRestricted: Boolean? = null, val name: String? = null, val type: String? = null, val volumePercent: Int? = null, val supportsVolume: Boolean? = null)

Constructors

Link copied to clipboard
constructor(id: String? = null, isActive: Boolean? = null, isPrivateSession: Boolean? = null, isRestricted: Boolean? = null, name: String? = null, type: String? = null, volumePercent: Int? = null, supportsVolume: Boolean? = null)

Properties

Link copied to clipboard
val id: String? = null
Link copied to clipboard
@SerialName(value = "is_active")
val isActive: Boolean? = null
Link copied to clipboard
@SerialName(value = "is_private_session")
val isPrivateSession: Boolean? = null
Link copied to clipboard
@SerialName(value = "is_restricted")
val isRestricted: Boolean? = null
Link copied to clipboard
val name: String? = null
Link copied to clipboard
@SerialName(value = "supports_volume")
val supportsVolume: Boolean? = null
Link copied to clipboard
val type: String? = null
Link copied to clipboard
@SerialName(value = "volume_percent")
val volumePercent: Int? = null