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