FixedOrPercentResponse

data class FixedOrPercentResponse(val fixed: Int, val percent: Int)

Message encapsulating a value that can be either absolute ("fixed") or relative ("percent") to a value.

Constructors

Link copied to clipboard
fun FixedOrPercentResponse(fixed: Int, percent: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val fixed: Int

Specifies a fixed value.

Link copied to clipboard

Specifies the relative value defined as a percentage, which will be multiplied by a reference value.