Package com.slack.api.model.event
Class AppRateLimitedEvent
- java.lang.Object
-
- com.slack.api.model.event.AppRateLimitedEvent
-
- All Implemented Interfaces:
Event,Serializable
public class AppRateLimitedEvent extends Object implements Event
https://api.slack.com/events/app_rate_limited- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AppRateLimitedEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetApiAppId()your application's ID, especially useful if you have multiple applications working with the Events APIIntegergetMinuteRateLimited()a rounded epoch time value indicating the minute your application became rate limited for this workspace.StringgetTeamId()subscriptions between your app and the workspace with this ID are being rate limitedStringgetToken()the same shared token used to verify other events in the Events APIStringgetType()inthashCode()voidsetApiAppId(String apiAppId)your application's ID, especially useful if you have multiple applications working with the Events APIvoidsetMinuteRateLimited(Integer minuteRateLimited)a rounded epoch time value indicating the minute your application became rate limited for this workspace.voidsetTeamId(String teamId)subscriptions between your app and the workspace with this ID are being rate limitedvoidsetToken(String token)the same shared token used to verify other events in the Events APIStringtoString()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.slack.api.model.event.Event
getSubtype
-
-
-
-
Field Detail
-
TYPE_NAME
public static final String TYPE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getToken
public String getToken()
the same shared token used to verify other events in the Events API
-
getTeamId
public String getTeamId()
subscriptions between your app and the workspace with this ID are being rate limited
-
getMinuteRateLimited
public Integer getMinuteRateLimited()
a rounded epoch time value indicating the minute your application became rate limited for this workspace. 1518467820 is at 2018-02-12 20:37:00 UTC.
-
getApiAppId
public String getApiAppId()
your application's ID, especially useful if you have multiple applications working with the Events API
-
setToken
public void setToken(String token)
the same shared token used to verify other events in the Events API
-
setTeamId
public void setTeamId(String teamId)
subscriptions between your app and the workspace with this ID are being rate limited
-
setMinuteRateLimited
public void setMinuteRateLimited(Integer minuteRateLimited)
a rounded epoch time value indicating the minute your application became rate limited for this workspace. 1518467820 is at 2018-02-12 20:37:00 UTC.
-
setApiAppId
public void setApiAppId(String apiAppId)
your application's ID, especially useful if you have multiple applications working with the Events API
-
canEqual
protected boolean canEqual(Object other)
-
-