use std::{error::Error, fmt};
use serde::Deserialize;
#[derive(Debug, PartialEq, Eq, Deserialize)]
pub struct JQuantsErrorResponse {
pub message: String,
}
impl fmt::Display for JQuantsErrorResponse {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.message)
}
}
impl Error for JQuantsErrorResponse {}