com.coinbase.api.entity.ApplicationsResponse 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 ApplicationsResponse extends Response {
/**
*
*/
private static final long serialVersionUID = -9050344897579847790L;
private List _applications;
public List getApplications() {
return _applications;
}
public void setApplications(List applications) {
_applications = applications;
}
}