/*
* Binance Spot API
*
* OpenAPI specification for Binance exchange - Spot API
*
* The version of the OpenAPI document: 0.1.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::spot::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SpotGetTimeV3Resp {
#[serde(rename = "serverTime", skip_serializing_if = "Option::is_none")]
pub server_time: Option<i64>,
}
impl SpotGetTimeV3Resp {
pub fn new() -> SpotGetTimeV3Resp {
SpotGetTimeV3Resp {
server_time: None,
}
}
}