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

com.github.tzemp.stackoverflow.StackExchangeQuery Maven / Gradle / Ivy

package com.github.tzemp.stackoverflow;

import java.util.List;

/**
 * Representation of a StackExchangeQuery
 */
public class StackExchangeQuery {

    private int quotaMax;
    private int quotaRemaining;
    private boolean hasMore;
    private String type;
    private List items;

    public StackExchangeQuery() {
    }

    public int getQuotaMax() {
        return quotaMax;
    }

    public void setQuotaMax(int quotaMax) {
        this.quotaMax = quotaMax;
    }

    public int getQuotaRemaining() {
        return quotaRemaining;
    }

    public void setQuotaRemaining(int quotaRemaining) {
        this.quotaRemaining = quotaRemaining;
    }

    public boolean isHasMore() {
        return hasMore;
    }

    public void setHasMore(boolean hasMore) {
        this.hasMore = hasMore;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public List getItems() {
        return items;
    }

    public void setItems(List items) {
        this.items = items;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy