14 lines
334 B
Python
14 lines
334 B
Python
from enum import Enum
|
|
|
|
|
|
class PaymentStatus(str,Enum):
|
|
PENDING='pending'
|
|
MONEY_ACCEPTED='money_accepted'
|
|
WEB3_PROCESSING='web3_processing'
|
|
WEB3_HASH_ERROR='web3_hash_error'
|
|
WEB3_BALANCE_PROBLEM='web3_balance_problem'
|
|
USDT_DELIVERED='usdt_delivered'
|
|
RECEIPT_ERROR='receipt_error'
|
|
COMPLETED='completed'
|
|
|