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

63 lines
1.3 KiB
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.

//
// NIMQChatUpdateServerParam.h
// NIMSDK
//
// Created by Netease.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
@class NIMQChatServer;
NS_ASSUME_NONNULL_BEGIN
/**
* 修改服务器的参数
*/
@interface NIMQChatUpdateServerParam : NSObject
/**
* 圈组服务器id必填
*/
@property (nonatomic, assign) unsigned long long serverId;
/**
* 名称
*/
@property (nullable, nonatomic, copy)NSString *name;
/**
* 图标
*/
@property (nullable, nonatomic, copy)NSString *icon;
/**
* 自定义扩展
*/
@property (nullable, nonatomic, copy)NSString *custom;
/**
* 邀请模式0-邀请需要同意(默认),1-邀请不需要同意
*/
@property (nullable, nonatomic, copy) NSNumber *inviteMode;
/**
* 申请模式0-申请不需要同意(默认)1-申请需要同意
*/
@property (nullable, nonatomic, copy) NSNumber *applyMode;
/**
* 服务器搜索类型,客户自定义:比如服务器行业类型等,大于0的正整数
*/
@property (nullable, nonatomic, copy) NSNumber *searchType;
/**
* 服务器是否允许被搜索
*/
@property (nullable, nonatomic, copy) NSNumber *searchEnable;
/**
* 对某些资料内容另外的反垃圾的业务ID
*/
@property (nonatomic, copy) NSString *antispamBusinessId;
@end
NS_ASSUME_NONNULL_END