dk.sdu.cloud.app.store.api.ApplicationParameter.FloatingPoint

UCloud Developer Guide / Orchestration of Resources / Compute / Application Store / Applications

ApplicationParameter.FloatingPoint

An input parameter which accepts any floating point value

data class FloatingPoint(
    val name: String?,
    val optional: Boolean?,
    val defaultValue: Any?,
    val title: String?,
    val description: String?,
    val min: Double?,
    val max: Double?,
    val step: Double?,
    val unitName: String?,
    val type: String /* "floating_point" */,
)

Compatible with: AppParameterValue.FloatingPoint

This parameter can be tweaked using the various options. For example, it is possible to provide a minimum and maximum value.

Properties

Last updated