1use serde::Deserialize; 2 3use super::Error; 4 5#[derive(Clone, Deserialize)] 6pub struct ErrorResponse { 7 pub errors: Vec<Error>, 8}