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

info.bitrich.xchangestream.bitstamp.dto.BitstampWebSocketTransaction Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package info.bitrich.xchangestream.bitstamp.dto;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.math.BigDecimal;
import org.knowm.xchange.bitstamp.dto.marketdata.BitstampTransaction;

public class BitstampWebSocketTransaction extends BitstampTransaction {
  public BitstampWebSocketTransaction(
      @JsonProperty("microtimestamp") BigDecimal microtimestamp,
      @JsonProperty("id") long tid,
      @JsonProperty("price") BigDecimal price,
      @JsonProperty("amount") BigDecimal amount,
      @JsonProperty("order_type") int type) {

    super(microtimestamp.longValue() / 1000, tid, price, amount, type);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy