清除会话的离线推送提醒类型设置。
connection.clearRemindTypeForConversation({conversationId: '123', type: 'singleChat'})
会话 id。
会话类型。
获取用户设置的推送翻译语言。
connection.getPushPerformLanguage()
获取当前用户的免打扰设置。
connection.getSilentModeForAll()
获取会话的免打扰设置。
connection.getSilentModeForConversation({conversationId: '3333', type: 'singleChat'})
会话 id。
会话类型。
批量获取指定会话的免打扰设置。
connection.getSilentModeForConversations({conversationList:[{id: 'test', type: 'singleChat'}, {id: '12345', type: 'groupChat'}]})
Obtain the DND Settings of specified sessions in batches.
connection.getSilentModeForConversations({conversationList:[{id: 'test', type: 'singleChat'}, {id: '12345', type: 'groupChat'}]})
设置用户推送翻译语言。
connection.setPushPerformLanguage({language: 'EU'})
Set user push translation language.
connection.setPushPerformLanguage({language: 'EU'})
Set the DND Settings for the current login user.
connection.setSilentModeForAll({options: {paramType: 0, remindType: 'ALL'}})
参数对象,包含paramType、remindType、duration、startTime、endTime。
设置会话的免打扰。
connection.setSilentModeForConversation({conversationId: '100', type: 'singleChat', params: {paramType: 0, remindType: 'ALL'}})
会话 id。 对于单聊类型,会话 ID 同时也是对方用户的名称。 对于群聊类型,会话 ID 同时也是对方群组的 ID,并不同于群组的名称。 对于聊天室类型,会话 ID 同时也是聊天室的 ID,并不同于聊天室的名称。 对于Help Desk 类型,会话 ID 与单聊类型相同,是对方用户的名称。
参数对象,包含paramType、remindType、duration、startTime、endTime。
会话类型。
SilentMode contains APIs for silent mode operations.