bondora 0.2.5

Bondora API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Bid : Bid to make into Auction.
#[derive(Debug, Serialize, Deserialize)]
pub struct Bid {
    /// The Auction's ID to bid to.
    #[serde(rename = "AuctionId")]
    pub auction_id: String,
    /// Amount to bid into Auction
    #[serde(rename = "Amount")]
    pub amount: f64,
    /// Not used. Value will be ignored.
    #[serde(rename = "MinAmount")]
    pub min_amount: Option<f64>,
}