ChannelAttributeOptions

最近更新时间:2022-09-20 05:17:40

维护频道属性操作相关选项。

示例

const ChannelAttributeOptions = {
  enableNotificationToChannelMembers: false,
};
/**
 * 全量设置某指定频道的属性。
 * @params channelId: 指定频道的频道 ID (类型:string)
 * @params attributes: 频道属性列表实例 (类型:object)
 * @params options: 频道属性操作选项 (类型:object)
 */
client.setChannelAttributes(
  "123456789",
  { userName: "主持人" },
  ChannelAttributeOptions
)
  .then(() => { })
  .catch((err) => { });

配置包含以下内容:

参数类型描述
enableNotificationToChannelMembersBoolean是否通知所有频道成员本次频道属性变更。true 为通知所有频道成员,默认为 false 不通知频道成员。