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