eba303d
1
2
3
4
5
6
7
8
from enum import Enum class PaymentMethod(Enum): CARD = 'CARD' CASH = 'CASH' UNKNOWN = 'UNKNOWN'