OUIMeetingModule.h 490 B

12345678910111213141516171819202122232425
  1. //
  2. // OUIMeetingModule.h
  3. // OUIMeetingModule
  4. //
  5. // Created by x on 2023/4/18.
  6. //
  7. #import "DCUniModule.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @class LiveRoomViewController;
  10. @interface OUIMeetingModule : DCUniModule
  11. /**
  12. 开始会议 -
  13. 点击邀请按钮,发送 “onNativeCallInvited” 事件
  14. @param param {"liveURL": "xxx", "token": "xxx", "roomID": "xxx", "busyLineUserIDList": ["xxx", "xxx"]}
  15. */
  16. - (void)startMeeting:(NSDictionary *)param;
  17. - (void)endCall;
  18. @end
  19. NS_ASSUME_NONNULL_END