org.knowm.xchange.coinbaseex.dto.trade.CoinbaseExSendMoneyResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-coinbaseex Show documentation
Show all versions of xchange-coinbaseex Show documentation
XChange implementation for Coinbase (Exchange)
The newest version!
package org.knowm.xchange.coinbaseex.dto.trade;
public class CoinbaseExSendMoneyResponse {
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 CoinbaseExSendMoneyResponse(Data data) {
this.data = data;
}
public Data getData() {
return data;
}
@Override
public String toString() {
return "CoinbaseExSendMoneyResponse{" + "data=" + data + '}';
}
}