1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use rust_decimal::Decimal;
use serde::Deserialize;
use crate::data::order_side::OrderSide;
use crate::data::order_status::OrderStatus;
use crate::data::order_time_in_force::OrderTimeInForce;
use crate::data::order_type::OrderType;
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Response {
pub symbol: String,
pub order_id: i64,
pub client_order_id: String,
pub price: Decimal,
pub orig_qty: Decimal,
pub executed_qty: Decimal,
pub cummulative_quote_qty: Decimal,
pub status: OrderStatus,
pub time_in_force: OrderTimeInForce,
pub r#type: OrderType,
pub side: OrderSide,
pub stop_price: Decimal,
pub iceberg_qty: Decimal,
pub time: i64,
pub update_time: i64,
pub is_working: bool,
}