binance_client/http_api_v3/data/time/get/
response.rs

1//!
2//! The time GET response.
3//!
4
5use serde::Deserialize;
6
7///
8/// The `https://www.binance.com/api/v3/time` GET response.
9///
10#[derive(Debug, Deserialize, Clone)]
11#[serde(rename_all = "camelCase")]
12pub struct Response {
13    /// The server time in milliseconds since Unix epoch.
14    pub server_time: i64,
15}