Skip to main content

rust_okx/api/
mod.rs

1//! Typed request/response models and endpoint methods, grouped by OKX API area.
2//!
3//! Each submodule exposes an accessor type (e.g. [`market::Market`]) reachable
4//! from the [`OkxClient`](crate::OkxClient), plus the request and response
5//! models for that area.
6
7pub mod account;
8pub mod funding;
9pub mod market;
10pub mod public_data;
11pub mod trade;