Skip to content

Commit

Permalink
adds paymentStatus and additionalAction to initThreeDSPaymentResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
reywyn committed Dec 7, 2023
1 parent 0ef7987 commit 071fa80
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/response/InitThreeDSPaymentResponse.ts
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 071fa80

Please sign in to comment.