1use serde::Deserialize; 2 3#[derive(Debug, Deserialize)] 4pub struct Asset { 5 pub symbol: String, 6 pub exchange: String, 7}