setTopicInfo
功能介绍
设置话题属性
4.0.1及以上版本支持
社群(Community)功能仅 SDK 4.0.1 及以上版本支持,需 购买旗舰版套餐包 并在 控制台 >功能配置>群组配置>群功能配置>社群中开通。
参数详解
参数名称 |
参数类型 |
是否必填 |
平台 |
描述 |
topicInfo |
V2TimTopicInfo |
是 |
全部 |
需要修改的话题的设置 |
groupID |
String |
是 |
全部 |
话题所在的群组id |
返回模板
V2TimCallback
{
code : int
desc : String
}
返回值详解
名称 |
数值类型 |
描述 |
code |
int |
请求结果错误码 |
desc |
String |
请求结果描述符 |
代码示例
V2TimTopicInfo topicInfo = V2TimTopicInfo(
customString: "",
draftText: "",
groupAtInfoList: [],
introduction: "",
isAllMute: false,
lastMessage: null,
notification: "",
selfMuteTime: 0,
topicFaceUrl: "",
topicID: "",
topicName: "",
unreadCount: 0,
);
V2TimCallback setTopicInfoRes =
await TencentImSDKPlugin.v2TIMManager.getGroupManager().setTopicInfo(
topicInfo: topicInfo,
groupID: "",
);
if (setTopicInfoRes.code == 0) {
}