com.coinbase.api.entity.AccountsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coinbase-java Show documentation
Show all versions of coinbase-java Show documentation
A first-party java wrapper around the Coinbase API
The newest version!
package com.coinbase.api.entity;
import java.util.List;
public class AccountsResponse extends Response {
/**
*
*/
private static final long serialVersionUID = -4054933671856737119L;
private List _accounts;
public List getAccounts() {
return _accounts;
}
public void setAccounts(List accounts) {
_accounts = accounts;
}
}