2025-10-09 16:48:46 +08:00

39 lines
888 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Copyright (c) 2022 NetEase, Inc. All rights reserved.
// Use of this source code is governed by a MIT license that can be
// found in the LICENSE file.
#import <Foundation/Foundation.h>
#import "GroupCallMember.h"
NS_ASSUME_NONNULL_BEGIN
@interface NEGroupInfo : NSObject
/// 通话id
@property(nonatomic, strong) NSString *callId;
/// 主叫信息
@property(nonatomic, strong) GroupCallMember *callerInfo;
/// 群id
@property(nonatomic, strong) NSString *groupId;
/// 群类型
@property(nonatomic, assign) NSInteger groupType;
/// 邀请模式GroupInviteMode
@property(nonatomic, assign) NSInteger inviteMode;
/// 加入模式GroupJoinMode
@property(nonatomic, assign) NSInteger joinMode;
/// 通话开始时间
@property(nonatomic, assign) NSInteger startTimestamp;
/// 自定义信息
@property(nonatomic, strong) NSString *extraInfo;
@end
NS_ASSUME_NONNULL_END