uniapp-app/nativeplugins/netease-Callkit/ios/NIMSDK.framework/Headers/NIMQChatRemoveServerRoleMembersResult.h
2025-10-09 16:48:46 +08:00

27 lines
497 B
Objective-C

//
// NIMQChatRemoveServerRoleMembersResult.h
// NIMLib
//
// Created by Netease.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NIMQChatRemoveServerRoleMembersResult : NSObject
/**
* 移除成功的accids
*/
@property (nonatomic, copy) NSArray <NSString *> *successfulAccidArray;
/**
* 移除失败的accids
*/
@property (nonatomic, copy) NSArray <NSString *> *failedAccidArray;
@end
NS_ASSUME_NONNULL_END