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