namespace AIStudio.Tools.Rust;
///
/// Data structure for any requested secret.
///
/// True, when the secret was successfully retrieved.
/// The secret, e.g., API key.
/// The issue, when the secret could not be retrieved.
public readonly record struct RequestedSecret(bool Success, EncryptedText Secret, string Issue);