ProductBySymbolGetResponse

Type Alias ProductBySymbolGetResponse 

Source
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: String

The symbol name.

§status: Status

The symbol status on the exchange.

§base_asset: String

The secondary token in the trading pair.

§quote_asset: String

The primary token in the trading pair.

§price_tick: Decimal

The price tick size.

§quantity_tick: Decimal

The quantity tick size.

§plan_to_open_market_time: Option<u64>

The market open timestamp, if the symbol is not being traded yet.