NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGenerateInviteCodeParam.h
浏览该文件的文档.
1//
2// NIMQChatGenerateInviteCodeParam.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11@class NIMQChatMessage;
13
14NS_ASSUME_NONNULL_BEGIN
15
16/**
17 * 生成邀请码的参数
18 */
19@interface NIMQChatGenerateInviteCodeParam : NSObject <NSCopying>
20
21/**
22 * 服务器ID
23 */
24@property(nonatomic, assign) unsigned long long serverId;
25
26/**
27 * 有效期(秒),NSTimeInterval
28 */
29@property(nullable, nonatomic, copy) NSNumber *ttl;
30
31@end
32
33NS_ASSUME_NONNULL_END
Definition: NIMQChatGenerateInviteCodeParam.h:19
unsigned long long serverId
Definition: NIMQChatGenerateInviteCodeParam.h:24
NSNumber * ttl
Definition: NIMQChatGenerateInviteCodeParam.h:29
Definition: NIMQChatMessage.h:76
Definition: NIMQChatUpdateParam.h:13