nomy_data_models/models/
mod.rs

1//! Model definitions for Nomy wallet analysis data processing.
2//!
3//! This file is generated automatically from the Python models.
4//! Do not edit this file manually.
5
6pub mod enriched_trade;
7pub use enriched_trade::EnrichedTrade;
8
9pub mod market_price;
10pub use market_price::MarketPrice;
11
12pub mod position;
13pub use position::Position;
14
15pub mod position_trade;
16pub use position_trade::PositionTrade;
17
18pub mod raw_trade;
19pub use raw_trade::RawTrade;
20
21pub mod service_state;
22pub use service_state::ServiceState;
23
24pub mod trade_match;
25pub use trade_match::TradeMatch;
26
27pub mod wallet_state;
28pub use wallet_state::WalletState;