1 2 3 4 5 6 7 8
use {crate::models::market_quote::OHLC, serde::{Deserialize, Serialize}}; #[derive(Deserialize, Serialize, Debug)] pub struct OHLCQuoteResponse { pub ohlc: OHLC, pub last_price: f64, pub instrument_token: String, }