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

com.dottydingo.hyperion.api.HistoryResponse Maven / Gradle / Ivy

The newest version!
package com.dottydingo.hyperion.api;

import com.fasterxml.jackson.annotation.JsonPropertyOrder;

import java.io.Serializable;
import java.util.List;

/**
 * A history response
 */
@JsonPropertyOrder({"page","entries"})
public class HistoryResponse>
{
    private Page page;
    private List> entries;

    /**
     * Return the page information
     * @return the page information
     */
    public Page getPage()
    {
        return page;
    }

    /**
     * Set the page information
     * @param page The page information
     */
    public void setPage(Page page)
    {
        this.page = page;
    }

    /**
     * Return the entries
     * @return THe entries
     */
    public List> getEntries()
    {
        return entries;
    }

    /**
     * Set the entries
     * @param entries The entries
     */
    public void setEntries(List> entries)
    {
        this.entries = entries;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy