ValueSecretInfoResponse

data class ValueSecretInfoResponse(val secretType: String, val value: String? = null)

The secret info when type is rawValue. It's for scenarios that user input the secret.

Constructors

Link copied to clipboard
constructor(secretType: String, value: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The secret type. Expected value is 'rawValue'.

Link copied to clipboard
val value: String? = null

The actual value of the secret.