All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.knowm.xchange.kucoin.dto.response.TradeHistoryResponse Maven / Gradle / Ivy

The newest version!
/** Copyright 2019 Mek Global Limited. */
package org.knowm.xchange.kucoin.dto.response;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.math.BigDecimal;
import lombok.Data;

/** Created by chenshiwei on 2019/1/18. */
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class TradeHistoryResponse {

  private String sequence;

  private BigDecimal price;

  private BigDecimal size;

  private String side;

  private long time;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy