sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
/// Describes the problems found by the Sideko OpenAPI linter
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct LintErrorDetails {
    #[serde(deserialize_with = "crate::core::patch::deserialize_required_nullable")]
    pub location: Option<String>,
    #[serde(deserialize_with = "crate::core::patch::deserialize_required_nullable")]
    pub message: Option<String>,
    pub method: String,
    pub path: String,
}