pub struct MarginOcoOrderOrderReportsItem {Show 14 fields
pub client_order_id: String,
pub cummulative_quote_qty: String,
pub executed_qty: String,
pub order_id: i64,
pub order_list_id: i64,
pub orig_client_order_id: String,
pub orig_qty: String,
pub price: String,
pub side: String,
pub status: String,
pub stop_price: String,
pub symbol: String,
pub time_in_force: String,
pub type_: String,
}
Expand description
MarginOcoOrderOrderReportsItem
JSON schema
{
"examples": [
[
{
"clientOrderId": "unfWT8ig8i0uj6lPuYLez6",
"cummulativeQuoteQty": "0.00000000",
"executedQty": "0.00000000",
"orderId": 2,
"orderListId": 0,
"origClientOrderId": "pO9ufTiFGg3nw2fOdgeOXa",
"origQty": "10.00000000",
"price": "1.00000000",
"side": "SELL",
"status": "CANCELED",
"stopPrice": "1.00000000",
"symbol": "BNBUSDT",
"timeInForce": "GTC",
"type": "STOP_LOSS_LIMIT"
},
{
"clientOrderId": "unfWT8ig8i0uj6lPuYLez6",
"cummulativeQuoteQty": "0.00000000",
"executedQty": "0.00000000",
"orderId": 3,
"orderListId": 0,
"origClientOrderId": "TXOvglzXuaubXAaENpaRCB",
"origQty": "10.00000000",
"price": "3.00000000",
"side": "SELL",
"status": "CANCELED",
"symbol": "BNBUSDT",
"timeInForce": "GTC",
"type": "LIMIT_MAKER"
}
]
],
"type": "object",
"required": [
"clientOrderId",
"cummulativeQuoteQty",
"executedQty",
"orderId",
"orderListId",
"origClientOrderId",
"origQty",
"price",
"side",
"status",
"stopPrice",
"symbol",
"timeInForce",
"type"
],
"properties": {
"clientOrderId": {
"type": "string"
},
"cummulativeQuoteQty": {
"type": "string"
},
"executedQty": {
"type": "string"
},
"orderId": {
"type": "integer",
"format": "int64"
},
"orderListId": {
"type": "integer",
"format": "int64"
},
"origClientOrderId": {
"type": "string"
},
"origQty": {
"type": "string"
},
"price": {
"type": "string"
},
"side": {
"type": "string"
},
"status": {
"type": "string"
},
"stopPrice": {
"type": "string"
},
"symbol": {
"type": "string"
},
"timeInForce": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
Fields§
§client_order_id: String
§cummulative_quote_qty: String
§executed_qty: String
§order_id: i64
§order_list_id: i64
§orig_client_order_id: String
§orig_qty: String
§price: String
§side: String
§status: String
§stop_price: String
§symbol: String
§time_in_force: String
§type_: String
Trait Implementations§
Source§impl Clone for MarginOcoOrderOrderReportsItem
impl Clone for MarginOcoOrderOrderReportsItem
Source§fn clone(&self) -> MarginOcoOrderOrderReportsItem
fn clone(&self) -> MarginOcoOrderOrderReportsItem
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for MarginOcoOrderOrderReportsItem
impl<'de> Deserialize<'de> for MarginOcoOrderOrderReportsItem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&MarginOcoOrderOrderReportsItem> for MarginOcoOrderOrderReportsItem
impl From<&MarginOcoOrderOrderReportsItem> for MarginOcoOrderOrderReportsItem
Source§fn from(value: &MarginOcoOrderOrderReportsItem) -> Self
fn from(value: &MarginOcoOrderOrderReportsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarginOcoOrderOrderReportsItem
impl RefUnwindSafe for MarginOcoOrderOrderReportsItem
impl Send for MarginOcoOrderOrderReportsItem
impl Sync for MarginOcoOrderOrderReportsItem
impl Unpin for MarginOcoOrderOrderReportsItem
impl UnwindSafe for MarginOcoOrderOrderReportsItem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more