NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatRejectServerApplyParam.h
浏览该文件的文档.
1//
2// NIMQChatRejectServerApplyParam.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13/**
14 * 拒绝申请的参数
15 */
16@interface NIMQChatRejectServerApplyParam : NSObject
17
18/**
19 * 圈组服务器ID
20 */
21@property (nonatomic, assign) unsigned long long serverId;
22
23/**
24 * 申请人ID
25 */
26@property (nonnull, nonatomic, copy) NSString *accid;
27
28/**
29 * 附言(最长5000)
30 */
31@property (nullable, nonatomic, copy) NSString *postscript;
32
33/**
34 * 请求id
35 */
36@property (nonatomic, assign) unsigned long long requestId;
37
38@end
39
40
41NS_ASSUME_NONNULL_END
Definition: NIMQChatRejectServerApplyParam.h:17
unsigned long long serverId
Definition: NIMQChatRejectServerApplyParam.h:21
NSString * postscript
Definition: NIMQChatRejectServerApplyParam.h:31
NSString * accid
Definition: NIMQChatRejectServerApplyParam.h:26
unsigned long long requestId
Definition: NIMQChatRejectServerApplyParam.h:36