com.xeiam.xchange.bitstamp.dto.account.BitstampWithdrawal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-bitstamp Show documentation
Show all versions of xchange-bitstamp Show documentation
XChange implementation for the Bitstamp Exchange
package com.xeiam.xchange.bitstamp.dto.account;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.xeiam.xchange.bitstamp.dto.BitstampBaseResponse;
/**
* @author Matija Mazi
*/
public final class BitstampWithdrawal extends BitstampBaseResponse {
private final Integer id;
/**
* Constructor
*
* @param id
*/
public BitstampWithdrawal(@JsonProperty("id") Integer id, @JsonProperty("error") String error) {
super(error);
this.id = id;
}
public Integer getId() {
return id;
}
@Override
public String toString() {
return String.format("Withdrawal{id=%s}", id);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy