bondora/models/
api_result_my_account_balance.rs

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