NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGenerateInviteCodeResult.h
浏览该文件的文档.
1//
2// NIMQChatSendSystemNotificationResult.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 NIMQChatGenerateInviteCodeResult : NSObject <NSCopying>
17/**
18 * 服务器ID
19 */
20@property(nonatomic, assign) unsigned long long serverId;
21/**
22 * 唯一标识
23 */
24@property(nonatomic, assign) long requestId;
25/**
26 * 邀请码
27 */
28@property(nullable, nonatomic, copy) NSString *inviteCode;
29/**
30 * 过期时间戳(秒)
31 */
32@property(nonatomic, assign) NSTimeInterval expireTime;
33@end
34
35
36NS_ASSUME_NONNULL_END
Definition: NIMQChatGenerateInviteCodeResult.h:16
NSString * inviteCode
Definition: NIMQChatGenerateInviteCodeResult.h:28
long requestId
Definition: NIMQChatGenerateInviteCodeResult.h:24
unsigned long long serverId
Definition: NIMQChatGenerateInviteCodeResult.h:20
NSTimeInterval expireTime
Definition: NIMQChatGenerateInviteCodeResult.h:32