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

info.bitrich.xchangestream.coincheck.dto.CoincheckStreamingOrderbookUpdate 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;

@Value
@Builder(toBuilder = true)
@Jacksonized
@JsonFormat(shape = JsonFormat.Shape.ARRAY)
@JsonPropertyOrder({"price", "volume"})
public class CoincheckStreamingOrderbookUpdate {
  BigDecimal price;
  BigDecimal volume;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy