NERtcCallKit for iOS V3.1.0
载入中...
搜索中...
未找到
NECallParam.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#import <NERtcSDK/NERtcSDK.h>
8#import "NECallPushConfig.h"
9
10NS_ASSUME_NONNULL_BEGIN
11
12@interface NECallParam : NSObject
13
15@property(nonatomic, strong) NSString *accId;
16
18@property(nonatomic, strong, nullable) NSString *extraInfo;
19
21@property(nonatomic, strong, nullable) NSString *rtcChannelName;
22
24@property(nonatomic, strong, nullable) NSString *globalExtraCopy;
25
27@property(nonatomic, assign) NECallType callType;
28
30@property(nonatomic, strong, nullable) NECallPushConfig *pushConfig;
31
32- (instancetype)initWithAccId:(NSString *)accId withCallType:(NECallType)callType;
33
34@end
35
36NS_ASSUME_NONNULL_END
定义 NECallParam.h:13
NSString * extraInfo
自定义信息
定义 NECallParam.h:18
NECallType callType
通话类型
定义 NECallParam.h:27
NSString * globalExtraCopy
全局抄送信息
定义 NECallParam.h:24
NSString * rtcChannelName
RTC房间号
定义 NECallParam.h:21
NECallPushConfig * pushConfig
推送配置
定义 NECallParam.h:30
NSString * accId
用户id
定义 NECallParam.h:15
定义 NECallPushConfig.h:10