org.knowm.xchange.coinbase.dto.account.CoinbaseUsers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-coinbase Show documentation
Show all versions of xchange-coinbase Show documentation
XChange implementation for Coinbase
package org.knowm.xchange.coinbase.dto.account;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** @author jamespedwards42 */
public class CoinbaseUsers {
private final List users;
private CoinbaseUsers(@JsonProperty("users") final List users) {
this.users = users;
}
public List getUsers() {
return users;
}
@Override
public String toString() {
return "CoinbaseUsers [users=" + users + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy