pub struct OrderListCancelParams {
pub symbol: String,
pub id: Option<String>,
pub order_list_id: Option<i32>,
pub list_client_order_id: Option<String>,
pub new_client_order_id: Option<String>,
pub recv_window: Option<Decimal>,
}Expand description
Request parameters for the [order_list_cancel] operation.
This struct holds all of the inputs you can pass when calling
order_list_cancel.
Fields§
§symbol: StringThe symbol parameter.
This field is **required.
id: Option<String>Unique WebSocket request ID.
This field is **optional.
order_list_id: Option<i32>Cancel order list by orderListId
This field is **optional.
list_client_order_id: Option<String>The list_client_order_id parameter.
This field is **optional.
new_client_order_id: Option<String>The new client order ID for the order after being amended.
If not sent, one will be randomly generated.
It is possible to reuse the current clientOrderId by sending it as the newClientOrderId.
This field is **optional.
recv_window: Option<Decimal>The value cannot be greater than 60000.
Supports up to three decimal places of precision (e.g., 6000.346) so that microseconds may be specified.
This field is **optional.
Implementations§
Source§impl OrderListCancelParams
impl OrderListCancelParams
Sourcepub fn builder(symbol: String) -> OrderListCancelParamsBuilder
pub fn builder(symbol: String) -> OrderListCancelParamsBuilder
Create a builder for [order_list_cancel].
Required parameters:
symbol— String
Trait Implementations§
Source§impl Clone for OrderListCancelParams
impl Clone for OrderListCancelParams
Source§fn clone(&self) -> OrderListCancelParams
fn clone(&self) -> OrderListCancelParams
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more