39 lines
708 B
Objective-C
39 lines
708 B
Objective-C
//
|
|
// NIMQChatInviteServerMembersResult.h
|
|
// NIMLib
|
|
//
|
|
// Created by Netease.
|
|
// Copyright © 2022 Netease. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* 邀请成员的结果
|
|
*/
|
|
@interface NIMQChatInviteServerMembersResult : NSObject <NSCopying>
|
|
|
|
/**
|
|
* 超过限制失败的accids
|
|
*/
|
|
@property (nonatomic, copy) NSArray <NSString *> *ultralimitFailedArray;
|
|
/**
|
|
* 因为封禁失败的accids
|
|
*/
|
|
@property (nonatomic, copy) NSArray <NSString *> *banedFailedArray;
|
|
|
|
/**
|
|
* 邀请ID
|
|
*/
|
|
@property (nonatomic, copy) NSString *requestId;
|
|
|
|
/**
|
|
* 过期时间(秒)
|
|
*/
|
|
@property (nonatomic, assign) NSTimeInterval expireTime;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|