Package ai.nexconn.chat.channel.model
Class OpenChannelMemberMutedInfo
-
- All Implemented Interfaces:
public final class OpenChannelMemberMutedInfoDetailed mute/unmute information for open channel members.
-
-
Field Summary
Fields Modifier and Type Field Description private final StringchannelIdprivate final OpenChannelMemberMuteTypemuteTypeprivate final LongdurationTimeprivate final LongoperateTimeprivate final List<String>userIdsprivate final Stringextra
-
Constructor Summary
Constructors Constructor Description OpenChannelMemberMutedInfo(String channelId, OpenChannelMemberMuteType muteType, Long durationTime, Long operateTime, List<String> userIds, String extra)
-
Method Summary
Modifier and Type Method Description final StringgetChannelId()Channel ID final OpenChannelMemberMuteTypegetMuteType()Mute or unmute operation final LonggetDurationTime()Duration of the mute in seconds final LonggetOperateTime()Timestamp of the operation final List<String>getUserIds()List of affected user IDs final StringgetExtra()Extra information -
-
Constructor Detail
-
OpenChannelMemberMutedInfo
OpenChannelMemberMutedInfo(String channelId, OpenChannelMemberMuteType muteType, Long durationTime, Long operateTime, List<String> userIds, String extra)
-
-
Method Detail
-
getChannelId
final String getChannelId()
Channel ID
-
getMuteType
final OpenChannelMemberMuteType getMuteType()
Mute or unmute operation
-
getDurationTime
final Long getDurationTime()
Duration of the mute in seconds
-
getOperateTime
final Long getOperateTime()
Timestamp of the operation
-
getUserIds
final List<String> getUserIds()
List of affected user IDs
-
getExtra
final String getExtra()
Extra information
-
-
-
-