Package ai.nexconn.chat.channel.model
Class OpenChannelMemberBannedInfo
-
- All Implemented Interfaces:
public final class OpenChannelMemberBannedInfoDetailed ban/unban information for open channel members.
-
-
Field Summary
Fields Modifier and Type Field Description private final StringchannelIdprivate final OpenChannelMemberBanTypebanTypeprivate final LongdurationTimeprivate final LongoperateTimeprivate final List<String>userIdsprivate final Stringextra
-
Constructor Summary
Constructors Constructor Description OpenChannelMemberBannedInfo(String channelId, OpenChannelMemberBanType banType, Long durationTime, Long operateTime, List<String> userIds, String extra)
-
Method Summary
Modifier and Type Method Description final StringgetChannelId()Channel ID final OpenChannelMemberBanTypegetBanType()Ban or unban operation final LonggetDurationTime()Duration of the ban in seconds final LonggetOperateTime()Timestamp of the operation final List<String>getUserIds()List of affected user IDs final StringgetExtra()Extra information -
-
Constructor Detail
-
OpenChannelMemberBannedInfo
OpenChannelMemberBannedInfo(String channelId, OpenChannelMemberBanType banType, Long durationTime, Long operateTime, List<String> userIds, String extra)
-
-
Method Detail
-
getChannelId
final String getChannelId()
Channel ID
-
getBanType
final OpenChannelMemberBanType getBanType()
Ban or unban operation
-
getDurationTime
final Long getDurationTime()
Duration of the ban 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
-
-
-
-