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

org.kohsuke.github.GHRateLimit Maven / Gradle / Ivy

The newest version!
package org.kohsuke.github;

/**
 * Rate limit.
 * @author Kohsuke Kawaguchi
 */
public class GHRateLimit {
    /**
     * Remaining calls that can be made.
     */
    public int remaining;
    /**
     * Alotted API call per hour.
     */
    public int limit;

    @Override
    public String toString() {
        return remaining+"/"+limit;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy