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;

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

    public T getResult() {
        return result;
    }

    public long getLastUpdated() {
        return lastUpdated;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy