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

com.hp.octane.integrations.services.pullrequestsandbranches.github.pojo.RateLimitationInfo Maven / Gradle / Ivy

There is a newer version: 2.24.3.5
Show newest version
package com.hp.octane.integrations.services.pullrequestsandbranches.github.pojo;

public class RateLimitationInfo {

    private int limit;
    private int remaining;
    private int used;
    private long reset;

    public int getLimit() {
        return limit;
    }

    public RateLimitationInfo setLimit(int limit) {
        this.limit = limit;
        return this;
    }

    public int getRemaining() {
        return remaining;
    }

    public RateLimitationInfo setRemaining(int remaining) {
        this.remaining = remaining;
        return this;
    }

    public int getUsed() {
        return used;
    }

    public RateLimitationInfo setUsed(int used) {
        this.used = used;
        return this;
    }

    public long getReset() {
        return reset;
    }

    public RateLimitationInfo setReset(long reset) {
        this.reset = reset;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy