pub type ProductBySymbolGetResponse = Symbol;Expand description
The https://www.binance.com/exchange-api/v2/public/asset-service/product/get-product-by-symbol GET response.
Aliased Type§
pub struct ProductBySymbolGetResponse {
pub symbol: String,
pub status: Status,
pub base_asset: String,
pub quote_asset: String,
pub price_tick: Decimal,
pub quantity_tick: Decimal,
pub plan_to_open_market_time: Option<u64>,
}Fields§
§symbol: StringThe symbol name.
status: StatusThe symbol status on the exchange.
base_asset: StringThe secondary token in the trading pair.
quote_asset: StringThe primary token in the trading pair.
price_tick: DecimalThe price tick size.
quantity_tick: DecimalThe quantity tick size.
plan_to_open_market_time: Option<u64>The market open timestamp, if the symbol is not being traded yet.