uniapp-app/nativeplugins/netease-Callkit/ios/NIMSDK.framework/Headers/NIMAddEmptyRecentSessionBySessionOption.h
2025-10-09 16:48:46 +08:00

25 lines
681 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.

//
// Created by chenjili on 2021/3/22.
// Copyright (c) 2021 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NIMAddEmptyRecentSessionBySessionOption : NSObject
/**
* 是否填入最后一条消息
* @discussion ,默认为 NO仅创建空会话为YES将同时添加最后一条消息
*/
@property (nonatomic,assign) BOOL withLastMsg;
/**
* 如果没有最后一条消息,是否用一条空消息补位
* @discussion ,默认为 YES创建一条空消息补位为NO不使用补位消息
*/
@property (nonatomic,assign) BOOL addEmptyMsgIfNoLastMsgExist;
@end
NS_ASSUME_NONNULL_END