TM-SGNL-iOS/SignalServiceKit/Messages/Payments/OWSPaymentActivationRequestFinishedMessage.h
TeleMessage developers dde0620daf initial commit
2025-05-03 12:28:28 -07:00

38 lines
1.6 KiB
Objective-C

//
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
#import <SignalServiceKit/TSOutgoingMessage.h>
NS_ASSUME_NONNULL_BEGIN
/// Outgoing message we send to the contact who requested we activate payments.
/// NOT rendered in chat; a separate TSInfoMessage is created for that purpose.
@interface OWSPaymentActivationRequestFinishedMessage : TSOutgoingMessage
- (instancetype)initOutgoingMessageWithBuilder:(TSOutgoingMessageBuilder *)outgoingMessageBuilder
recipientAddressStates:
(NSDictionary<SignalServiceAddress *, TSOutgoingMessageRecipientState *> *)
recipientAddressStates NS_UNAVAILABLE;
- (instancetype)initOutgoingMessageWithBuilder:(TSOutgoingMessageBuilder *)outgoingMessageBuilder
additionalRecipients:(NSArray<SignalServiceAddress *> *)additionalRecipients
explicitRecipients:(NSArray<AciObjC *> *)explicitRecipients
skippedRecipients:(NSArray<SignalServiceAddress *> *)skippedRecipients
transaction:(SDSAnyReadTransaction *)transaction NS_UNAVAILABLE;
- (instancetype)initWithThread:(TSThread *)thread transaction:(SDSAnyReadTransaction *)transaction;
- (nullable instancetype)initWithCoder:(NSCoder *)coder NS_UNAVAILABLE;
// --- CODE GENERATION MARKER
// This snippet is generated by /Scripts/sds_codegen/sds_generate.py. Do not manually edit it, instead run
// `sds_codegen.sh`.
// --- CODE GENERATION MARKER
@end
NS_ASSUME_NONNULL_END