Study Parameter
Types
Link copied to clipboard
data class Checkbox(val heading: String, val name: String, val parameterType: StudyParameterType, val defaultValue: Boolean, val value: Boolean) : StudyParameter
A boolean parameter of active study Study
Link copied to clipboard
data class Color(val heading: String, val name: String, val parameterType: StudyParameterType, val defaultValue: String, val value: String) : StudyParameter
A color parameter of active study Study
Link copied to clipboard
data class Number(val heading: String, val name: String, val parameterType: StudyParameterType, val defaultValue: Double, val value: Double) : StudyParameter
A number parameter of active study Study
Link copied to clipboard
data class Select(val heading: String, val name: String, val parameterType: StudyParameterType, val defaultValue: String, val value: String, val options: Map<String, String>) : StudyParameter
A parameter of active study Study that has a limited list of possible options
Link copied to clipboard
A set of postfixes supported by the library
Link copied to clipboard
data class Text(val heading: String, val name: String, val parameterType: StudyParameterType, val defaultValue: String, val value: String) : StudyParameter
A text parameter of active study Study
Link copied to clipboard
data class TextColor(val heading: String, val name: String, val parameterType: StudyParameterType, val defaultValue: Double, val value: Double?, val defaultColor: String, val color: String?) : StudyParameter
A parameter of active study Study that contains a number and a color