billing.Enumeration.PaymentMethod - typedoc2md/typedoc-plugin-markdown-examples GitHub Wiki
github-wiki-example / billing / PaymentMethod
Enumeration: PaymentMethod
Defined in: billing.ts:15
Enum representing different types of payment methods. These are used to specify the payment mechanism chosen by a customer.
Enumeration Members
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 |