YOUPAILZLivePKAttachment.h 949 B

12345678910111213141516171819202122232425
  1. //
  2. // YOUPAILZLivePKAttachment.h
  3. // TIANYAN
  4. //
  5. // Created by CY on 2021/5/31.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "LCCustomAttachmentDefine.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YOUPAILZLivePKAttachment : NSObject<NIMCustomAttachment,LCCustomAttachmentInfo>
  12. @property (nonatomic, strong) NSString *type; /// 事件子类型 call(来电)、timeout(超时)、cancel(取消)、hangup(挂断)、agree(接听)、refuse(拒绝)
  13. @property (nonatomic, strong) NSString *from_roomid; /// 发起方的频道id
  14. @property (nonatomic, strong) NSString *from_uid; /// 发起方的用户id
  15. @property (nonatomic, strong) NSString *to_roomid; /// 接收方的频道id
  16. @property (nonatomic, strong) NSString *to_uid; /// 接收方的用户id
  17. @property (nonatomic, strong) NSString *id; /// pk或连麦 id
  18. @property (nonatomic, strong) NSString *operate_uid; /// 操作者id
  19. @end
  20. NS_ASSUME_NONNULL_END