Options
All
  • Public
  • Public/Protected
  • All
Menu

SilentMode contains APIs for silent mode operations.

Index

Functions

  • 获取所有设置了免打扰的会话。

    Parameters

    • this: Connection
    • params: { cursor?: string; pageSize: number }
      • Optional cursor?: string

        游标。如果数据还有下一页,该方法的返回值会包含此字段,传递此字段可获取下一页的数据,为 null 时获取第一页数据。

      • pageSize: number

        每页数据条数,默认为 10。

    Returns Promise<AsyncResult<GetSilentModeRemindTypeConversationsResult>>

    connection.getAllSilentModeConversations({pageSize: 10})
    
  • 设置会话的免打扰。

    connection.setSilentModeForConversation({conversationId: '100', type: 'singleChat', params: {paramType: 0, remindType: 'ALL'}})
    

    Parameters

    Returns Promise<AsyncResult<SilentModeConversationType>>

Generated using TypeDoc