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