podman_rest_client/v5/models/
secret_in_use.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3pub struct SecretInUse {
4    /// API root cause formatted for automated parsing
5    pub cause: Option<String>,
6    /// human error message, formatted for a human to read
7    pub message: Option<String>,
8    /// HTTP response code
9    pub response: Option<i64>,
10}