#![allow(unused_imports)]
use crate::spot::websocket_api::models;
use serde::{Deserialize, Deserializer, Serialize, de::Error};
use serde_json::Value;
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum TickerPriceResponse {
TickerPriceResponse1(Box<models::TickerPriceResponse1>),
TickerPriceResponse2(Box<models::TickerPriceResponse2>),
Other(serde_json::Value),
}
impl Default for TickerPriceResponse {
fn default() -> Self {
Self::TickerPriceResponse1(Default::default())
}
}