TextSecret

data class TextSecret(val text: String) : Secret

A data class representing a secret that contains a string value.

This class extends the abstract Secret class and provides a single property text, which contains the secret value as a plain text string.

Parameters

text

the plain text value of the secret

See also

Constructors

Link copied to clipboard
constructor(text: String)

Properties

Link copied to clipboard