-
Notifications
You must be signed in to change notification settings - Fork 3
billing.Enumeration.PaymentMethod
tgreyuk edited this page Sep 6, 2024
·
7 revisions
github-wiki-example / billing / PaymentMethod
Enum representing different types of payment methods. These are used to specify the payment mechanism chosen by a customer.
Enumeration Member | Value | Description | Defined in |
---|---|---|---|
BankTransfer |
"Bank Transfer" |
Payment via direct bank transfer. Used typically for larger transactions or where credit cards and PayPal are not viable. | billing.ts:23 |
CreditCard |
"Credit Card" |
Payment through credit card. | billing.ts:17 |
PayPal |
"PayPal" |
Payment through PayPal. Ideal for users who prefer not to directly use their credit card details. | billing.ts:20 |