// // NIMQChatDeleteMessageParam.h // NIMSDK // // Created by Netease. // Copyright © 2022 Netease. All rights reserved. // #import @class NIMQChatMessage; @class NIMQChatUpdateParam; NS_ASSUME_NONNULL_BEGIN /** * 删除圈组消息的参数 */ @interface NIMQChatDeleteMessageParam : NSObject /** * 更新操作目标消息,必填 */ @property(nonnull, nonatomic, strong) NIMQChatMessage *message; /** * 更新操作通用参数,设置该操作相关的附加字段,设置该操作引发的推送内容,必填 */ @property(nonnull, nonatomic, strong) NIMQChatUpdateParam *updateParam; @end NS_ASSUME_NONNULL_END