binance_client/http_api_v3/data/order/post/response/
ack.rs

1//!
2//! The order POST response ack.
3//!
4
5use serde::Deserialize;
6
7///
8/// The `https://www.binance.com/api/v3/order` POST ack-type response.
9///
10/// Ack response does not contain any order data, but only the acknowledgement of being accepted.
11///
12#[derive(Debug, Deserialize, Clone)]
13#[serde(rename_all = "camelCase")]
14pub struct Ack {
15    /// The symbol name.
16    pub symbol: String,
17    /// The server-side order ID.
18    pub order_id: i64,
19    /// The client-side order ID.
20    pub client_order_id: String,
21    /// The time when the order was acknowledged.
22    pub transact_time: i64,
23}