summaryrefslogtreecommitdiffstats
path: root/src/response/error.rs
blob: 252adef2a23953dbb97bd0a12a7904fa0ba0a0bb (plain)
1
2
3
4
5
6
#[derive(Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct Error {
    pub message: String,
    pub code: u8
}