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

org.knowm.xchange.kraken.dto.account.Withdraw Maven / Gradle / Ivy

There is a newer version: 4.2.3
Show newest version
package org.knowm.xchange.kraken.dto.account;

import com.fasterxml.jackson.annotation.JsonProperty;

public class Withdraw {
  /*
   * refid = reference id *
   */

  private final String refid;

  public Withdraw(@JsonProperty("refid") String refid) {
    super();
    this.refid = refid;
  }

  public String getRefid() {
    return refid;
  }

  @Override
  public String toString() {
    return "Withdraw [refid=" + refid + "]";
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy