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 60b7f90a71 - Show all commits
+6 -5
View File
@@ -474,6 +474,7 @@ enum IPGStatus {
IPG_FAILED = -1; IPG_FAILED = -1;
IPG_PENDING = 1; IPG_PENDING = 1;
} }
// represent the information regarding the sale of the token // represent the information regarding the sale of the token
message IPGGetTokenReq { message IPGGetTokenReq {
auth.v1.InternalIAM iam = 1; auth.v1.InternalIAM iam = 1;
@@ -549,9 +550,9 @@ message BuyAssetRes {
int64 id = 1; int64 id = 1;
Asset asset = 2; Asset asset = 2;
double amount = 3; double amount = 3;
double calculated_amount = 4; double calculated_irt_amount = 4;
double fee_amount = 5; double calculated_asset_amount = 5;
double discount_amount = 6; double fee_amount = 6;
double buy_min_amount = 7; double discount_amount = 7;
double buy_min_amount = 8;
} }