rust-okx 0.3.0

Async Rust client for the OKX v5 REST API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::model::RestRow;

/// Convert currency row.
pub type ConvertCurrency = RestRow;

/// Convert currency-pair row.
pub type ConvertCurrencyPair = RestRow;

/// Convert quote row.
pub type ConvertQuote = RestRow;

/// Convert trade result row.
pub type ConvertTradeResult = RestRow;

/// Convert history row.
pub type ConvertHistory = RestRow;