pub type SecretValue = SecretValue;
enum SecretValue { String(String), Bytes(Vec<u8>), }
A string value
A byte array value