bondora 0.2.5

Bondora API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// GoGrowAccount : Go and Grow account
#[derive(Debug, Serialize, Deserialize)]
pub struct GoGrowAccount {
    /// Name of your Go and Grow
    #[serde(rename = "Name")]
    pub name: Option<String>,
    /// TotalDeposits - TotalWithdrawals
    #[serde(rename = "NetDeposits")]
    pub net_deposits: Option<f64>,
    /// Everything you have gained from Go and Grow
    #[serde(rename = "NetProfit")]
    pub net_profit: Option<f64>,
    /// Total Go and Grow value
    #[serde(rename = "TotalSaved")]
    pub total_saved: Option<f64>,
}