ConfigVariableResponse

data class ConfigVariableResponse(val boolValue: Boolean, val intValue: String, val key: String, val secretValue: SecretResponse, val stringValue: String)

ConfigVariable represents a configuration variable present in a Connection. or AuthConfig.

Constructors

Link copied to clipboard
fun ConfigVariableResponse(boolValue: Boolean, intValue: String, key: String, secretValue: SecretResponse, stringValue: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Value is a bool.

Link copied to clipboard

Value is an integer

Link copied to clipboard
val key: String

Key of the config variable.

Link copied to clipboard

Value is a secret.

Link copied to clipboard

Value is a string.