use crate::spot::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SpotGetTickerPriceV3RespItem {
#[serde(rename = "price", skip_serializing_if = "Option::is_none")]
pub price: Option<String>,
#[serde(rename = "symbol", skip_serializing_if = "Option::is_none")]
pub symbol: Option<String>,
}
impl SpotGetTickerPriceV3RespItem {
pub fn new() -> SpotGetTickerPriceV3RespItem {
SpotGetTickerPriceV3RespItem {
price: None,
symbol: None,
}
}
}