
org.knowm.xchange.binance.dto.account.WithdrawRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-binance Show documentation
Show all versions of xchange-binance Show documentation
Development fork. Not for general use.
The newest version!
package org.knowm.xchange.binance.dto.account;
import com.fasterxml.jackson.annotation.JsonProperty;
public final class WithdrawRequest extends WapiResponse {
public final String id;
public WithdrawRequest(
@JsonProperty("success") boolean success,
@JsonProperty("msg") String msg,
@JsonProperty("id") String id) {
super(success, msg);
this.id = id;
}
@Override
public String getData() {
return id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy