com.coinbase.api.entity.ReportNode 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.io.Serializable;
public class ReportNode implements Serializable {
/**
*
*/
private static final long serialVersionUID = 3996102881697459153L;
private Report _Report;
public Report getReport() {
return _Report;
}
public void setReport(Report Report) {
_Report = Report;
}
}