// // NIMQChatGetMemberRolesParam.h // NIMSDK // // Created by Netease. // Copyright © 2022 Netease. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN /** * 查询channel下个人的定制权限 */ @interface NIMQChatGetMemberRolesParam : NSObject /** * 服务器id */ @property (nonatomic, assign) unsigned long long serverId; /** * 频道id */ @property (nonatomic, assign) unsigned long long channelId; /** * timetag */ @property (nonatomic, assign) NSTimeInterval timeTag; /** * 每页个数 */ @property (nonatomic, assign) NSInteger limit; @end NS_ASSUME_NONNULL_END