bondora 0.2.5

Bondora API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(Debug, Serialize, Deserialize)]
pub struct ApiResultReport {
    /// Number of items returned
    #[serde(rename = "Count")]
    pub count: i32,
    /// The payload of the response. Type depends on the API request.
    #[serde(rename = "Payload")]
    pub payload: Option<crate::models::Report>,
    /// Indicates if the request was successfull or not.  true if the request was handled successfully, false otherwise.
    #[serde(rename = "Success")]
    pub success: bool,
    /// Error(s) accociated with the API request.
    #[serde(rename = "Errors")]
    pub errors: Option<Vec<crate::models::ApiError>>,
}