Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
signalapp
GitHub Repository: signalapp/Signal-iOS
Path: blob/main/SignalServiceKit/Subscriptions/Donations/DonationPaymentProcessor.swift
1 views
//
// 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"
}