We merged6e97ff3c8fandbcbf52101ein rapid succession, which caused compilation errors. This fixes those.
12 lines
304 B
Swift
12 lines
304 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)
|
|
}
|