chore: update identity status type to UserStatus #34

Open
mapoofano wants to merge 370 commits from chore-identity-user-status into main
Showing only changes of commit 6c0cacbec6 - Show all commits
+7 -6
View File
@@ -76,12 +76,13 @@ enum MarketOrderSide {
}
enum MarketOrderStatus {
MO_UNKOWN_MP_STATUS = 0; // Unknown
MO_OPEN = 1; // Order is open and waiting to be completed
MO_CANCEL = 2; // Cancelled by user
MO_COMPLETED = 3; // Order is completed
MO_FAILED = 4; // Order is failed - bad trx , etc.
MO_REFUNDED = 5; // Order is refunded by platform to user due to regulation
// MO_EXPIRED = 4; // Order is expired
MO_CREATED = 1; // Order is just created and awaits confirmation
MO_OPEN = 2; // Order is open and waiting to be completed
MO_CANCEL = 3; // Cancelled by user
MO_COMPLETED = 4; // Order is completed
MO_FAILED = 5; // Order is failed - bad trx , etc.
MO_REFUNDED = 6; // Order is refunded by platform to user due to regulation
// MO_EXPIRED = 7; // Order is expired
}
message OrderListFilter {