org.kohsuke.github.GHCheckRunsPage Maven / Gradle / Ivy
package org.kohsuke.github;
// TODO: Auto-generated Javadoc
/**
* Represents the one page of check-runs result when listing check-runs.
*/
class GHCheckRunsPage {
private int total_count;
private GHCheckRun[] check_runs;
/**
* Gets the total count.
*
* @return the total count
*/
public int getTotalCount() {
return total_count;
}
/**
* Gets the check runs.
*
* @param owner
* the owner
* @return the check runs
*/
GHCheckRun[] getCheckRuns(GHRepository owner) {
for (GHCheckRun check_run : check_runs) {
check_run.wrap(owner);
}
return check_runs;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy