
org.knowm.xchange.kraken.dto.account.Withdraw Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-kraken Show documentation
Show all versions of xchange-kraken Show documentation
XChange implementation for the Kraken Exchange
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