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

info.bitrich.xchangestream.bitfinex.dto.BitfinexWebSocketAuthTrade Maven / Gradle / Ivy

There is a newer version: 5.2.1
Show newest version
package info.bitrich.xchangestream.bitfinex.dto;

import java.math.BigDecimal;
import java.util.Objects;

public class BitfinexWebSocketAuthTrade extends BitfinexWebSocketAuthPreTrade {
  private final BigDecimal fee;
  private final String feeCurrency;

  public BitfinexWebSocketAuthTrade(
      long id,
      String pair,
      long mtsCreate,
      long orderId,
      BigDecimal execAmount,
      BigDecimal execPrice,
      String orderType,
      BigDecimal orderPrice,
      long maker,
      BigDecimal fee,
      String feeCurrency) {
    super(id, pair, mtsCreate, orderId, execAmount, execPrice, orderType, orderPrice, maker);
    this.fee = fee;
    this.feeCurrency = feeCurrency;
  }

  public BigDecimal getFee() {
    return fee;
  }

  public String getFeeCurrency() {
    return feeCurrency;
  }

  @Override
  public String toString() {
    return "BitfinexWebSocketAuthenticatedTrade{"
        + "id="
        + getId()
        + ", pair='"
        + getPair()
        + '\''
        + ", mtsCreate="
        + getMtsCreate()
        + ", orderId="
        + getOrderId()
        + ", execAmount="
        + getExecAmount()
        + ", execPrice="
        + getExecPrice()
        + ", orderType='"
        + getOrderType()
        + '\''
        + ", orderPrice="
        + getOrderPrice()
        + ", maker="
        + getMtsCreate()
        + ", fee="
        + fee
        + ", feeCurrency='"
        + feeCurrency
        + '\''
        + '}';
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) return true;
    if (!(o instanceof BitfinexWebSocketAuthTrade)) return false;
    if (!super.equals(o)) return false;
    BitfinexWebSocketAuthTrade that = (BitfinexWebSocketAuthTrade) o;
    return Objects.equals(fee, that.fee) && Objects.equals(feeCurrency, that.feeCurrency);
  }

  @Override
  public int hashCode() {
    return Objects.hash(super.hashCode(), fee, feeCurrency);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy