NERtcCallKit for iOS V3.1.0
载入中...
搜索中...
未找到
NEInviteInfo.h
浏览该文件的文档.
1// Copyright (c) 2022 NetEase, Inc. All rights reserved.
2// Use of this source code is governed by a MIT license that can be
3// found in the LICENSE file.
4
5#import <Foundation/Foundation.h>
7
8NS_ASSUME_NONNULL_BEGIN
9
10@interface NEInviteInfo : NSObject
11
13@property(nonatomic, strong) NSString *callerAccId;
14
16@property(nonatomic, assign) NECallType callType;
17
19@property(nonatomic, strong) NSString *extraInfo;
20
22@property(nonatomic, strong) NSString *channelId;
23
24@end
25
26NS_ASSUME_NONNULL_END
定义 NEInviteInfo.h:11
NSString * callerAccId
呼叫者的accId
定义 NEInviteInfo.h:13
NECallType callType
呼叫类型 1 音频 2 视频
定义 NEInviteInfo.h:16
NSString * channelId
信令通道id
定义 NEInviteInfo.h:22
NSString * extraInfo
用户自定义信息(主叫发送被叫接收)
定义 NEInviteInfo.h:19