pub type AmendOrderResponse = OperationResponse<AmendOrderResult>;Expand description
Response returned by amend-order and batch-amend-orders.
Aliased Type§
pub struct AmendOrderResponse {
pub id: String,
pub op: String,
pub code: String,
pub msg: String,
pub data: Vec<AmendOrderResult>,
pub in_time: NumberString,
pub out_time: NumberString,
pub extra: BTreeMap<String, Value>,
}Fields§
§id: StringClient request ID.
op: StringOperation name, e.g. order or sprd-order.
code: StringTop-level OKX response code.
msg: StringTop-level OKX response message.
data: Vec<AmendOrderResult>Per-request result rows.
in_time: NumberStringGateway receive timestamp in microseconds.
out_time: NumberStringGateway send timestamp in microseconds.
extra: BTreeMap<String, Value>Fields introduced by OKX after this crate version.