PaymentCardBrand
This enumeration defines the supported brands for payment cards, including American Express, Mastercard, and Visa. It provides a standardized set of string values to represent card networks and includes a fallback option for unidentified brands.
Attributes
| Attribute | Type | Description |
|---|---|---|
| amex | string = American Express | Represents the American Express payment card brand for transaction processing. |
| mastercard | string = Mastercard | Represents the Mastercard payment card brand for transaction processing. |
| visa | string = Visa | Represents the Visa payment card brand for transaction processing. |
| other | string = other | Fallback category for payment card brands not explicitly defined in the enumeration. |