amount irr added to bnpl payments

This commit is contained in:
nfel 2024-08-12 10:43:12 +03:30
parent f87dc92d3e
commit 930dc67791
Signed by: nfel
GPG Key ID: DCC0BF3F92B0D45F

View File

@ -124,6 +124,7 @@ enum BNPLPaymentsStatus {
message BNPLPayments { message BNPLPayments {
uint64 id = 1; uint64 id = 1;
double amount = 2; double amount = 2;
double amount_irr = 7;
bool is_paied = 3; bool is_paied = 3;
string due_date = 4; string due_date = 4;
string settlement_date = 5; string settlement_date = 5;
@ -140,8 +141,10 @@ message UserBNPLResp {
repeated BNPLPayments payments = 7; repeated BNPLPayments payments = 7;
optional string employee_id = 8; optional string employee_id = 8;
optional authorization.Company company = 10; optional authorization.Company company = 10;
authorization.InternalIAM iam = 11;
optional string updated_at = 12; optional string updated_at = 12;
optional string created_at = 13; optional string created_at = 13;
Asset selected_asset = 14;
} }
message UserBNPLReq { message UserBNPLReq {