AppParameterValue.FloatingPoint

API: Experimental/Alpha

A floating point value

data class FloatingPoint(
    val value: Double,
    val type: String /* "floating_point" */,
)
  • Compatible with: ApplicationParameter.FloatingPoint

  • Mountable as a resource: ❌ No

  • Expands to: The number

  • Side effects: None

Internally this uses a big decimal type and there are no defined limits.

Properties
value: Double
type: String /* "floating_point" */ The type discriminator

API: Stable