ValueWithReason

data class ValueWithReason(val value: String, val reason: String? = null)

A ValueWithReason represents a single configuration value that may have an explanation as to why it is used.

Constructors

Link copied to clipboard
fun ValueWithReason(value: String, reason: String? = null)

Properties

Link copied to clipboard
val reason: String? = null

an optional explanation for the configured value

Link copied to clipboard
val value: String

the actual value that is configured