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

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

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

import com.dottydingo.hyperion.api.ApiObject;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;

import java.util.List;

/**
 */
@JsonPropertyOrder({"start","responseCount","totalCount","entries"})
public class EntityResponse
{
    private Integer start;
    private Integer responseCount;
    private Long totalCount;
    private List entries;

    public Integer getStart()
    {
        return start;
    }

    public void setStart(Integer start)
    {
        this.start = start;
    }

    public Integer getResponseCount()
    {
        return responseCount;
    }

    public void setResponseCount(Integer responseCount)
    {
        this.responseCount = responseCount;
    }

    public Long getTotalCount()
    {
        return totalCount;
    }

    public void setTotalCount(Long totalCount)
    {
        this.totalCount = totalCount;
    }

    public List getEntries()
    {
        return entries;
    }

    public void setEntries(List entries)
    {
        this.entries = entries;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy