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

com.dexmatech.styx.modules.ratelimit.RateLimitStatus Maven / Gradle / Ivy

There is a newer version: 1.0.22
Show newest version
package com.dexmatech.styx.modules.ratelimit;

import lombok.AllArgsConstructor;
import lombok.Getter;

import java.util.List;

/**
 * Created by aortiz on 16/09/16.
 */
@Getter
@AllArgsConstructor
public class RateLimitStatus {
	private boolean allowed;
	private List currentRateLimits;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy