com.binance.api.client.domain.general.ServerTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance-api-client Show documentation
Show all versions of binance-api-client Show documentation
Java implementation for Binance API
package com.binance.api.client.domain.general;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* Time of the server running Binance's REST API.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class ServerTime {
private Long serverTime;
public Long getServerTime() {
return serverTime;
}
public void setServerTime(Long serverTime) {
this.serverTime = serverTime;
}
@Override
public String toString() {
return String.valueOf(serverTime);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy