Package ai.nexconn.chat.channel.model
Class ChannelUserTypingStatusInfo
-
- All Implemented Interfaces:
public final class ChannelUserTypingStatusInfoRepresents a user's typing status within a channel.
-
-
Field Summary
Fields Modifier and Type Field Description private final StringuserIdprivate final StringtypingMessageTypeprivate final LongsentTime
-
Constructor Summary
Constructors Constructor Description ChannelUserTypingStatusInfo(String userId, String typingMessageType, Long sentTime)
-
Method Summary
Modifier and Type Method Description final StringgetUserId()final StringgetTypingMessageType()final LonggetSentTime()-
-
Constructor Detail
-
ChannelUserTypingStatusInfo
ChannelUserTypingStatusInfo(String userId, String typingMessageType, Long sentTime)
- Parameters:
userId- The user ID of the typing usertypingMessageType- The message type being composed (e.g.sentTime- The timestamp when the typing status was sent (milliseconds)
-
-
Method Detail
-
getUserId
final String getUserId()
-
getTypingMessageType
final String getTypingMessageType()
-
getSentTime
final Long getSentTime()
-
-
-
-