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

info.bitrich.xchangestream.coincheck.dto.CoincheckStreamingTrade Maven / Gradle / Ivy

The newest version!
package info.bitrich.xchangestream.coincheck.dto;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.math.BigDecimal;
import lombok.Builder;
import lombok.Value;
import lombok.extern.jackson.Jacksonized;
import org.knowm.xchange.coincheck.dto.marketdata.CoincheckPair;

@Value
@Builder(toBuilder = true)
@Jacksonized
@JsonFormat(shape = JsonFormat.Shape.ARRAY)
@JsonPropertyOrder({"id", "pair", "price", "amount", "orderType"})
public class CoincheckStreamingTrade {
  String id;
  CoincheckPair pair;
  BigDecimal price;
  BigDecimal amount;
  String orderType;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy