2025-10-09 16:48:46 +08:00

34 lines
562 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// NIMQChatGenerateInviteCodeParam.h
// NIMSDK
//
// Created by Netease.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
@class NIMQChatMessage;
@class NIMQChatUpdateParam;
NS_ASSUME_NONNULL_BEGIN
/**
* 生成邀请码的参数
*/
@interface NIMQChatGenerateInviteCodeParam : NSObject <NSCopying>
/**
* 服务器ID
*/
@property(nonatomic, assign) unsigned long long serverId;
/**
* 有效期NSTimeInterval
*/
@property(nullable, nonatomic, copy) NSNumber *ttl;
@end
NS_ASSUME_NONNULL_END