murdock_api/models/http_validation_error.rs
1/*
2 * Murdock API
3 *
4 * This is the Murdock API
5 *
6 * The version of the OpenAPI document: 1.0.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
15pub struct HttpValidationError {
16 #[serde(rename = "detail", skip_serializing_if = "Option::is_none")]
17 pub detail: Option<Vec<crate::models::ValidationError>>,
18}
19
20impl HttpValidationError {
21 pub fn new() -> HttpValidationError {
22 HttpValidationError {
23 detail: None,
24 }
25 }
26}
27
28