NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatRejectServerInviteParam.h
浏览该文件的文档.
1//
2// NIMQChatRejectServerInviteParam.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 NIMQChatRejectServerInviteParam : NSObject <NSCopying>
17/**
18 * 圈组服务器ID
19 */
20@property (nonatomic, assign) unsigned long long serverId;
21
22/**
23 * 邀请对象的账号数组
24 */
25@property (nonnull, nonatomic, copy) NSString * accid;
26
27/**
28 * 附言(最长5000)
29 */
30@property (nullable, nonatomic, copy) NSString *postscript;
31
32/**
33 * 邀请ID
34 */
35@property (nonatomic, assign) unsigned long long requestId;
36@end
37
38
39NS_ASSUME_NONNULL_END
Definition: NIMQChatRejectServerInviteParam.h:16
NSString * postscript
Definition: NIMQChatRejectServerInviteParam.h:30
unsigned long long requestId
Definition: NIMQChatRejectServerInviteParam.h:35
NSString * accid
Definition: NIMQChatRejectServerInviteParam.h:25
unsigned long long serverId
Definition: NIMQChatRejectServerInviteParam.h:20