WuKongIMFlutterSDK/lib/entity/channel_member.dart
2023-08-18 21:55:18 +08:00

39 lines
820 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import 'dart:collection';
class WKChannelMember {
String channelID = "";
//频道类型
int channelType = 0;
//成员id
String memberUID = "";
//成员名称
String memberName = "";
//成员备注
String memberRemark = "";
//成员头像
String memberAvatar = "";
//成员角色
int role = 0;
//成员状态黑名单等1正常2黑名单
int status = 0;
//是否删除
int isDeleted = 0;
//创建时间
String createdAt = "";
//修改时间
String updatedAt = "";
//版本
int version = 0;
// 机器人0否1是
int robot = 0;
//扩展字段
HashMap extraMap = HashMap();
// 用户备注
String remark = "";
// 邀请者uid
String memberInviteUID = "";
// 被禁言到期时间
int forbiddenExpirationTime = 0;
String memberAvatarCacheKey = "";
}