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. /// The structured issue reported by the native credential store. public readonly record struct RequestedSecret(bool Success, EncryptedText Secret, string Issue, SecretStoreIssueCode IssueCode = SecretStoreIssueCode.NONE);