From c90a1a068e90070f1c7dfa8ac9749704886f8005 Mon Sep 17 00:00:00 2001 From: nfel Date: Tue, 27 May 2025 16:10:42 +0330 Subject: [PATCH] v2: closed state for BankInfoStatusE Signed-off-by: nfel --- auth/v1/msg.proto | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/auth/v1/msg.proto b/auth/v1/msg.proto index d5839e1..6d062ed 100644 --- a/auth/v1/msg.proto +++ b/auth/v1/msg.proto @@ -192,11 +192,12 @@ message BankInfoList { repeated BankInfo list = 1; } -// Status 0: Fail Verify, 1: Verified, 2: Does not Match user's credential +// Status 0: Fail Verify, 1: Verified, 2: Does not Match user's credential , 3: Closed for potential fraud enum BankInfoStatusEnum { FAIL_VERIFY = 0; VERIFIED = 1; DOES_NOT_MATCH = 2; + CLOSED = 3; } message BankInfo {