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

14 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"
}