All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.braintreegateway.AccountUpdaterDailyReport Maven / Gradle / Ivy

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;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy