namespace AIStudio.Tools.Rust; /// /// Data structure for deleting a secret response. /// /// True, when the secret was successfully deleted or not found. /// The issue, when the secret could not be deleted. /// True, when the entry was found and deleted. public readonly record struct DeleteSecretResponse(bool Success, string Issue, bool WasEntryFound);