pub struct BatchedOrder {
pub category: String,
pub symbol: String,
pub order_id: String,
pub order_link_id: String,
pub create_at: u64,
}Expand description
Represents a single batched order result.
Details the outcome of an individual order in a batch placement request. Bots use this to track specific order creations and correlate with their trading strategy.
Fields§
§category: StringThe product category (e.g., “linear”).
Indicates the instrument type of the order. Bots should verify this matches the requested category.
symbol: StringThe trading pair symbol (e.g., “BTCUSDT”).
Identifies the perpetual futures contract for the order. Bots should confirm this matches the requested symbol.
order_id: StringThe unique order ID.
Identifies the placed order on Bybit’s exchange. Bots use this to track the order’s status and executions.
order_link_id: StringThe user-defined order link ID.
A custom identifier for the order. Bots can use this to correlate the order with specific strategies or client requests.
create_at: u64The timestamp of order creation.
Indicates when the order was created. Bots use this to align order data with other time-series data.
Trait Implementations§
Source§impl Clone for BatchedOrder
impl Clone for BatchedOrder
Source§fn clone(&self) -> BatchedOrder
fn clone(&self) -> BatchedOrder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more