Signal-iOS/SignalMessaging/Subscriptions/PreparedGiftPayment.swift
Evan Hahn ac3e0a67c1 Fix compilation errors for PayPal code
We merged 6e97ff3c8f and
bcbf52101e in rapid succession, which
caused compilation errors.

This fixes those.
2023-01-18 17:49:30 -06:00

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)
}