bondora 0.2.5

Bondora API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// EventLogItem : EventLog list item's information
#[derive(Debug, Serialize, Deserialize)]
pub struct EventLogItem {
    /// Event date
    #[serde(rename = "EventDate")]
    pub event_date: Option<String>,
    /// Event type
    #[serde(rename = "EventType")]
    pub event_type: Option<i32>,
    /// IP address
    #[serde(rename = "IpAddress")]
    pub ip_address: Option<String>,
    /// Request data JSON format
    #[serde(rename = "Data")]
    pub data: Option<String>,
}