From f3c501499534237ed006e43bfbc565ab0477b46c Mon Sep 17 00:00:00 2001 From: Onur Polattimur Date: Thu, 6 Jun 2024 11:34:14 +0300 Subject: [PATCH] Add paymentId field to masterpass 3ds init response --- adapter/model.go | 1 + 1 file changed, 1 insertion(+) diff --git a/adapter/model.go b/adapter/model.go index 82333cd..877cede 100644 --- a/adapter/model.go +++ b/adapter/model.go @@ -1096,6 +1096,7 @@ type PayoutAccountResponse struct { } type MasterpassPaymentThreeDSInitResponse struct { + PaymentId *int64 `json:"paymentId"` ReturnUrl *string `json:"returnUrl"` }