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

org.knowm.xchange.ripple.dto.trade.RippleTransactionFee Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package org.knowm.xchange.ripple.dto.trade;

import java.math.BigDecimal;

public class RippleTransactionFee {
  private BigDecimal fee;
  private boolean success;

  public BigDecimal getFee() {
    return fee;
  }

  public void setFee(final BigDecimal fee) {
    this.fee = fee;
  }

  public boolean isSuccess() {
    return success;
  }

  public void setSuccess(final boolean success) {
    this.success = success;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy