Signal-iOS/SignalServiceKit/Subscriptions/DonationPaymentProcessor.swift
2023-11-06 13:49:40 -08:00

15 lines
437 B
Swift

//
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
/// Service providers who process donation payments on our behalf.
public enum DonationPaymentProcessor: String {
/// Represents Stripe, which we use for Apple Pay, credit/debit card, and
/// SEPA debit payments.
case stripe = "STRIPE"
/// Represents Braintree, which we use for PayPal payments.
case braintree = "BRAINTREE"
}