// // Copyright 2018 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only // #import NS_ASSUME_NONNULL_BEGIN @class StoryMessage; @interface TSOutgoingDeleteMessage : TSOutgoingMessage - (instancetype)initOutgoingMessageWithBuilder:(TSOutgoingMessageBuilder *)outgoingMessageBuilder recipientAddressStates: (NSDictionary *) recipientAddressStates NS_UNAVAILABLE; - (instancetype)initOutgoingMessageWithBuilder:(TSOutgoingMessageBuilder *)outgoingMessageBuilder additionalRecipients:(NSArray *)additionalRecipients explicitRecipients:(NSArray *)explicitRecipients skippedRecipients:(NSArray *)skippedRecipients transaction:(DBReadTransaction *)transaction NS_UNAVAILABLE; - (instancetype)initWithThread:(TSThread *)thread message:(TSOutgoingMessage *)message transaction:(DBReadTransaction *)transaction; - (instancetype)initWithThread:(TSThread *)thread storyMessage:(StoryMessage *)storyMessage skippedRecipients:(NSArray *)skippedRecipients transaction:(DBReadTransaction *)transaction; @end NS_ASSUME_NONNULL_END