From 6ae72b103d318ac5d0c18cab5b89ac3536bf5f89 Mon Sep 17 00:00:00 2001 From: Serhat Tunca <35580464+tuncaserhat@users.noreply.github.com> Date: Fri, 12 Nov 2021 14:13:46 +0300 Subject: [PATCH] Add bankId to paymentResponse (#72) Co-authored-by: Onur Polattimur --- src/response/dto/MerchantPos.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/response/dto/MerchantPos.ts b/src/response/dto/MerchantPos.ts index f001eae..55b9018 100644 --- a/src/response/dto/MerchantPos.ts +++ b/src/response/dto/MerchantPos.ts @@ -2,6 +2,7 @@ type MerchantPos = { id: number; name: string; alias: string; + bankId: number; }; export default MerchantPos;