
org.knowm.xchange.gdax.dto.trade.GDAXSendMoneyResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-gdax Show documentation
Show all versions of xchange-gdax Show documentation
XChange implementation for GDAX
package org.knowm.xchange.gdax.dto.trade;
public class GDAXSendMoneyResponse {
public static class Data {
private final String id;
public Data(String id) {
this.id = id;
}
public String getId() {
return id;
}
@Override
public String toString() {
return "Data{" + "id='" + id + '\'' + '}';
}
}
private final Data data;
public GDAXSendMoneyResponse(Data data) {
this.data = data;
}
public Data getData() {
return data;
}
@Override
public String toString() {
return "CoinbaseExSendMoneyResponse{" + "data=" + data + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy