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

30 lines
542 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.

//
// NIMQChatGetLastMessageOfChannelsParam.h
// NIMSDK
//
// Created by Evang on 2022/5/26.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
// 批量获取频道最后一条消息的入参
@interface NIMQChatGetLastMessageOfChannelsParam : NSObject
/**
* 服务器id
*/
@property (nonatomic, assign) unsigned long long serverId;
/**
* 频道id数组 [@(channelId)]
*/
@property (nonatomic, copy) NSArray <NSNumber *> *channelIds;
@end
NS_ASSUME_NONNULL_END