com.braintreegateway.AccountUpdaterDailyReport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.braintree-java
Show all versions of org.apache.servicemix.bundles.braintree-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
The newest version!
package com.braintreegateway;
import com.braintreegateway.util.NodeWrapper;
import java.util.Calendar;
public final class AccountUpdaterDailyReport {
private final String reportUrl;
private final Calendar reportDate;
public AccountUpdaterDailyReport(NodeWrapper node) {
this.reportUrl = node.findString("report-url");
this.reportDate = node.findDate("report-date");
}
public String getReportUrl() {
return reportUrl;
}
public Calendar getReportDate() {
return reportDate;
}
}