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