//!//! The order POST response ack.
//!useserde::Deserialize;////// The `https://www.binance.com/api/v3/order` POST ack-type response.
////// Ack response does not contain any order data, but only the acknowledgement of being accepted.
///#[derive(Debug, Deserialize, Clone)]#[serde(rename_all ="camelCase")]pubstructAck{/// The symbol name.
pubsymbol: String,
/// The server-side order ID.
puborder_id:i64,
/// The client-side order ID.
pubclient_order_id: String,
/// The time when the order was acknowledged.
pubtransact_time:i64,
}