Package com.slack.api.model.event
Class MessageThreadBroadcastEvent
- java.lang.Object
-
- com.slack.api.model.event.MessageThreadBroadcastEvent
-
- All Implemented Interfaces:
Event
,Serializable
public class MessageThreadBroadcastEvent extends Object implements Event
https://api.slack.com/events/message/thread_broadcast- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
SUBTYPE_NAME
static String
TYPE_NAME
-
Constructor Summary
Constructors Constructor Description MessageThreadBroadcastEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
List<Attachment>
getAttachments()
List<LayoutBlock>
getBlocks()
String
getChannel()
String
getChannelType()
String
getClientMsgId()
String
getEventTs()
Message.MessageRoot
getRoot()
String
getSubtype()
String
getText()
String
getThreadTs()
String
getTs()
String
getType()
String
getUser()
int
hashCode()
void
setAttachments(List<Attachment> attachments)
void
setBlocks(List<LayoutBlock> blocks)
void
setChannel(String channel)
void
setChannelType(String channelType)
void
setClientMsgId(String clientMsgId)
void
setEventTs(String eventTs)
void
setRoot(Message.MessageRoot root)
void
setText(String text)
void
setThreadTs(String threadTs)
void
setTs(String ts)
void
setUser(String user)
String
toString()
-
-
-
Field Detail
-
TYPE_NAME
public static final String TYPE_NAME
- See Also:
- Constant Field Values
-
SUBTYPE_NAME
public static final String SUBTYPE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getClientMsgId
public String getClientMsgId()
-
getSubtype
public String getSubtype()
- Specified by:
getSubtype
in interfaceEvent
-
getChannel
public String getChannel()
-
getUser
public String getUser()
-
getRoot
public Message.MessageRoot getRoot()
-
getText
public String getText()
-
getBlocks
public List<LayoutBlock> getBlocks()
-
getAttachments
public List<Attachment> getAttachments()
-
getTs
public String getTs()
-
getThreadTs
public String getThreadTs()
-
getEventTs
public String getEventTs()
-
getChannelType
public String getChannelType()
-
setClientMsgId
public void setClientMsgId(String clientMsgId)
-
setChannel
public void setChannel(String channel)
-
setUser
public void setUser(String user)
-
setRoot
public void setRoot(Message.MessageRoot root)
-
setText
public void setText(String text)
-
setBlocks
public void setBlocks(List<LayoutBlock> blocks)
-
setAttachments
public void setAttachments(List<Attachment> attachments)
-
setTs
public void setTs(String ts)
-
setThreadTs
public void setThreadTs(String threadTs)
-
setEventTs
public void setEventTs(String eventTs)
-
setChannelType
public void setChannelType(String channelType)
-
canEqual
protected boolean canEqual(Object other)
-
-