bondora 0.2.5

Bondora API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// ApiError : API Error object. Describes the error that occured.
#[derive(Debug, Serialize, Deserialize)]
pub struct ApiError {
    /// Code of the error. For machine reading.
    #[serde(rename = "Code")]
    pub code: i32,
    /// The error message for human reading.
    #[serde(rename = "Message")]
    pub message: String,
    /// Error details, if any.   For example the non valid Field's name or the Id of the failed object.
    #[serde(rename = "Details")]
    pub details: Option<String>,
}