NERtcCallKit for iOS V3.1.0
载入中...
搜索中...
未找到
NESignalInfo.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>
6
7NS_ASSUME_NONNULL_BEGIN
8
9@interface NESignalInfo : NSObject
10
12@property(nonatomic, strong) NSString *channelId;
13
15@property(nonatomic, strong) NSString *requestId;
16
18@property(nonatomic, strong) NSString *channelName;
19
21@property(nonatomic, strong) NSString *extraInfo;
22
24@property(nonatomic, strong) NSString *globalExtraCopy;
25
26@end
27
28NS_ASSUME_NONNULL_END
定义 NESignalInfo.h:10
NSString * channelId
信令频道Id
定义 NESignalInfo.h:12
NSString * channelName
信令通道名称
定义 NESignalInfo.h:18
NSString * extraInfo
扩展信息,透传到到被叫onReceiveInvited
定义 NESignalInfo.h:21
NSString * requestId
信令邀请唯一标识
定义 NESignalInfo.h:15
NSString * globalExtraCopy
定义的呼叫全局抄送信息,用户服务端接收抄送时设置自己的业务标识
定义 NESignalInfo.h:24