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 BidResponse {
    /// Item unique identifier
    #[serde(rename = "Id")]
    pub id: Option<String>,
    /// Auction unique identifier
    #[serde(rename = "AuctionId")]
    pub auction_id: Option<String>,
    /// Amount to bid into Auction
    #[serde(rename = "Amount")]
    pub amount: Option<f64>,
    /// Not used. Will always be NULL.
    #[serde(rename = "MinAmount")]
    pub min_amount: Option<f64>,
}