
org.knowm.xchange.gdax.dto.trade.GDAXIdResponse 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;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GDAXIdResponse {
private final String id;
public GDAXIdResponse(@JsonProperty("id") String id) {
this.id = id;
}
public String getId() {
return id;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("CoinbaseExIdResponse [id=");
builder.append(id);
builder.append("]");
return builder.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy