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

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

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

public class GitHubPaging {
    private int totalCount;
    private boolean lastPage;
    private String cursor;
    private int currentCount;

    public int getTotalCount() {
        return totalCount;
    }

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

    public boolean isLastPage() {
        return lastPage;
    }

    public void setLastPage(boolean lastPage) {
        this.lastPage = lastPage;
    }

    public String getCursor() {
        return cursor;
    }

    public void setCursor(String cursor) {
        this.cursor = cursor;
    }

    public int getCurrentCount() {
        return currentCount;
    }

    public void setCurrentCount(int currentCount) {
        this.currentCount = currentCount;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy