feat(models): add CLOSED status to UniversignTransactionStatus enum
This commit is contained in:
parent
5ad1fccc5c
commit
c24f276ce4
1 changed files with 1 additions and 0 deletions
|
|
@ -20,6 +20,7 @@ class UniversignTransactionStatus(str, Enum):
|
||||||
READY = "ready"
|
READY = "ready"
|
||||||
STARTED = "started"
|
STARTED = "started"
|
||||||
COMPLETED = "completed"
|
COMPLETED = "completed"
|
||||||
|
CLOSED = "closed"
|
||||||
REFUSED = "refused"
|
REFUSED = "refused"
|
||||||
EXPIRED = "expired"
|
EXPIRED = "expired"
|
||||||
CANCELED = "canceled"
|
CANCELED = "canceled"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue