From f496cb4d326fe1839ab78648215212eeaa25016e Mon Sep 17 00:00:00 2001 From: nfel Date: Mon, 16 Dec 2024 15:50:43 +0330 Subject: [PATCH] wallet: /#14 rejection reason for bnpl is optional Signed-off-by: nfel --- wallet/v1/msg.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index f8f70c3..465a9d2 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -179,6 +179,7 @@ message BNPLInfo { string updated_at = 12; string created_at = 13; string expires_at = 14; + optional string rejection_reason = 15; } message BNPLList { repeated BNPLInfo list = 1;