
org.knowm.xchange.binance.dto.meta.BinanceTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-binance Show documentation
Show all versions of xchange-binance Show documentation
Development fork. Not for general use.
The newest version!
package org.knowm.xchange.binance.dto.meta;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Date;
public class BinanceTime {
@JsonProperty private long serverTime;
public Date getServerTime() {
return new Date(serverTime);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy