ApplicationParameter.Integer

API: Internal/Beta

An input parameter which accepts any integer value

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

Compatible with: AppParameterValue.Integer

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

Properties
name: String?
optional: Boolean?
defaultValue: Any?
title: String?
description: String?
min: Long?
max: Long?
step: Long?
unitName: String?
type: String /* "integer" */ The type discriminator

API: Stable