use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug)]
pub struct HTTPValidationError {
detail: Option<Vec<ValidationError>>,
}
#[derive(Serialize, Deserialize, Debug)]
pub struct ValidationError {
pub loc: Vec<ValidationErrorLocation>, pub msg: String, pub r#type: String, }
#[derive(Serialize, Deserialize, Debug)]
pub struct ValidationErrorLocation {}