YOUPAILCCallAttachment.h 753 B

12345678910111213141516171819202122
  1. //
  2. // YOUPAILCCallAttachment.h
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/11/27.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "LCCustomAttachmentDefine.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YOUPAILCCallAttachment : NSObject<NIMCustomAttachment,LCCustomAttachmentInfo>
  12. @property(nonatomic,assign)NSInteger call_time; //通话时长
  13. @property(nonatomic,assign)NSInteger from_uid; //主叫者ID
  14. @property(nonatomic,assign)NSInteger to_uid; //被叫者ID
  15. @property(nonatomic,assign)NSInteger calltype; //通话类型1是视频通话 2是语音通话
  16. @property(nonatomic,assign)NSInteger status; //1主叫者取消 2被叫者拒绝 3呼叫超时 4已接通
  17. @end
  18. NS_ASSUME_NONNULL_END