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

com.capitalone.dashboard.model.DataResponse Maven / Gradle / Ivy

There is a newer version: 3.4.53
Show newest version
package com.capitalone.dashboard.model;

public class DataResponse {
    private final T result;
    private final long lastUpdated;
    private String reportUrl;

    public DataResponse(T result, long lastUpdated) {
        this.result = result;
        this.lastUpdated = lastUpdated;
    }

    public DataResponse(T result, long lastUpdated,String reportUrl ) {
        this.result = result;
        this.lastUpdated = lastUpdated;
        this.reportUrl = reportUrl;
    }

    public T getResult() {
        return result;
    }

    public long getLastUpdated() {
        return lastUpdated;
    }

    public String getReportUrl() {
        return reportUrl;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy