toConversation.d.ts 677 B

123456789101112131415161718192021222324
  1. /**
  2. * 跳转会话 请求参数定义
  3. * @apiName biz.chat.toConversation
  4. */
  5. export interface IBizChatToConversationParams {
  6. /** 企业id */
  7. corpId: string;
  8. /** 会话Id */
  9. chatId: string;
  10. }
  11. /**
  12. * 跳转会话 返回结果定义
  13. * @apiName biz.chat.toConversation
  14. */
  15. export interface IBizChatToConversationResult {
  16. }
  17. /**
  18. * 根据chatId跳转到对应会话
  19. * @description corpid必须是用户所属的企业的corpid
  20. * @apiName biz.chat.toConversation
  21. * @supportVersion ios: 2.6.0 android: 2.6.0
  22. */
  23. export declare function toConversation$(params: IBizChatToConversationParams): Promise<IBizChatToConversationResult>;
  24. export default toConversation$;