TM-SGNL-iOS/SignalServiceKit/Subscriptions/Donations/PreparedGiftPayment.swift
TeleMessage developers dde0620daf initial commit
2025-05-03 12:28:28 -07:00

11 lines
323 B
Swift

//
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import Foundation
public enum PreparedGiftPayment {
case forStripe(paymentIntent: Stripe.PaymentIntent, paymentMethodId: String)
case forPaypal(approvalParams: Paypal.OneTimePaymentWebAuthApprovalParams, paymentId: String)
}