Package com.slack.api.model.event
Class CallRejectedEvent
- java.lang.Object
-
- com.slack.api.model.event.CallRejectedEvent
-
- All Implemented Interfaces:
Event
,Serializable
public class CallRejectedEvent extends Object implements Event
If a Call has been shared with a user in DM (and unfurled with the help of the link_shared event), this event is sent if the user rejects the Call.https://api.slack.com/events/call_rejected
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CallRejectedEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
String
getCallId()
String
getChannelId()
String
getExternalUniqueId()
String
getType()
String
getUserId()
int
hashCode()
void
setCallId(String callId)
void
setChannelId(String channelId)
void
setExternalUniqueId(String externalUniqueId)
void
setUserId(String userId)
String
toString()
-
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
-
getCallId
public String getCallId()
-
getUserId
public String getUserId()
-
getChannelId
public String getChannelId()
-
getExternalUniqueId
public String getExternalUniqueId()
-
setCallId
public void setCallId(String callId)
-
setUserId
public void setUserId(String userId)
-
setChannelId
public void setChannelId(String channelId)
-
setExternalUniqueId
public void setExternalUniqueId(String externalUniqueId)
-
canEqual
protected boolean canEqual(Object other)
-
-