Signal-iOS/SignalServiceKit/Subscriptions/Donations/DonationPaymentProcessor.swift
2024-10-25 10:14:56 -07: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"
}