From 071fa809e928a00a68c94cb586987ceabf9bd50e Mon Sep 17 00:00:00 2001 From: Emre INAL Date: Thu, 7 Dec 2023 09:37:30 +0300 Subject: [PATCH] adds paymentStatus and additionalAction to initThreeDSPaymentResponse --- src/response/InitThreeDSPaymentResponse.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/response/InitThreeDSPaymentResponse.ts b/src/response/InitThreeDSPaymentResponse.ts index 0a09fb7..fe8869a 100644 --- a/src/response/InitThreeDSPaymentResponse.ts +++ b/src/response/InitThreeDSPaymentResponse.ts @@ -1,6 +1,11 @@ +import AdditionalAction from '../model/AdditionalAction'; +import PaymentStatus from '../model/PaymentStatus'; + type InitThreeDSPaymentResponse = { htmlContent: string; paymentId: number; + paymentStatus: PaymentStatus; + additionalAction: AdditionalAction; }; export default InitThreeDSPaymentResponse;