Skip to content

Commit

Permalink
[Update] add field.
Browse files Browse the repository at this point in the history
  • Loading branch information
std-s committed Jul 18, 2022
1 parent 9c7c99d commit 799da68
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
7 changes: 6 additions & 1 deletion OpenIMSDK/Model/OIMGroupInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, assign) NSInteger memberCount;
/// 群状态:0正常,1被封,2解散,3禁言
@property (nonatomic, assign) NSInteger status;
@property (nonatomic, nullable, copy) NSString *creatorUserID;
@property (nonatomic, copy) NSString *creatorUserID;
@property (nonatomic, assign) NSInteger needVerification;
@property (nonatomic, assign) NSInteger lookMemberInfo;
@property (nonatomic, assign) NSInteger applyMemberFriend;
@property (nonatomic, assign) NSInteger notificationUpdateTime;
@property (nonatomic, copy) NSString *notificationUserID;

@end

Expand Down
2 changes: 2 additions & 0 deletions OpenIMSDK/Model/OIMGroupMemberInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ NS_ASSUME_NONNULL_BEGIN
// 禁言时间s
@property (nonatomic, assign) NSTimeInterval muteEndTime;

@property (nonatomic, copy) NSString *inviterUserID;

@property (nonatomic, nullable, copy) NSString *ex;

@end
Expand Down
1 change: 1 addition & 0 deletions OpenIMSDK/Utils/OIMModelDefine.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ typedef NS_ENUM(NSInteger, OIMMessageContentType) {
OIMMessageContentTypeTyping = 113, /// 正在输入状态
OIMMessageContentTypeQuote = 114, /// 引用消息
OIMMessageContentTypeFace = 115, /// 动图消息
OIMMessageContentTypeAdvancedRevoke = 118, /// 撤回消息类型-新
/// 以下皆是通知消息枚举
OIMMessageContentTypeFriendAppApproved = 1201, /// 同意加好友申请通知
OIMMessageContentTypeFriendAppRejected = 1202, /// 拒绝加好友申请通知
Expand Down

0 comments on commit 799da68

Please sign in to comment.