ResourceResultIntegerWithUnit

@Serializable
data class ResourceResultIntegerWithUnit(val status: String, val value: Int? = null, val updatedAt: Instant? = null, val unit: String? = null, val code: String? = null, val message: String? = null)(source)

Resource result with integer value and unit.

Constructors

Link copied to clipboard
constructor(status: String, value: Int? = null, updatedAt: Instant? = null, unit: String? = null, code: String? = null, message: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "code")
val code: String?
Link copied to clipboard
@SerialName(value = "message")
val message: String?
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "status")
val status: String
Link copied to clipboard
@SerialName(value = "unit")
val unit: String?
Link copied to clipboard
@SerialName(value = "updatedAt")
val updatedAt: Instant?
Link copied to clipboard
@SerialName(value = "value")
val value: Int?