NERtcCallKit V3.4.0
载入中...
搜索中...
未找到
NEGroupCallInfo.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 "GroupCallMember.h"
7#import "GroupHeader.h"
8NS_ASSUME_NONNULL_BEGIN
9
10@interface NEGroupCallInfo : NSObject
11
13@property(nonatomic, strong) NSString *callId;
14
16@property(nonatomic, strong) GroupCallMember *callerInfo;
17
19@property(nonatomic, strong) NSArray<GroupCallMember *> *calleeList;
20
22@property(nonatomic, strong) NSString *groupId;
23
25@property(nonatomic, assign) NSInteger groupType;
26
28@property(nonatomic, assign) NSInteger inviteMode;
29
31@property(nonatomic, assign) NSInteger joinMode;
32
34@property(nonatomic, assign) NSInteger startTimestamp;
35
37@property(nonatomic, strong) NSString *extraInfo;
38
39@end
40
41NS_ASSUME_NONNULL_END
定义 GroupCallMember.h:9
定义 NEGroupCallInfo.h:11
NSInteger groupType
群类型
定义 NEGroupCallInfo.h:25
NSInteger startTimestamp
通话开始时间
定义 NEGroupCallInfo.h:34
NSInteger joinMode
加入模式,GroupJoinMode
定义 NEGroupCallInfo.h:31
NSArray< GroupCallMember * > * calleeList
被叫列表
定义 NEGroupCallInfo.h:19
NSInteger inviteMode
邀请模式,GroupInviteMode
定义 NEGroupCallInfo.h:28
NSString * extraInfo
自定义信息
定义 NEGroupCallInfo.h:37
NSString * callId
通话id
定义 NEGroupCallInfo.h:13
NSString * groupId
群id
定义 NEGroupCallInfo.h:22
GroupCallMember * callerInfo
主叫信息
定义 NEGroupCallInfo.h:16