Closed codingconcepts closed 6 years ago
From the Adyen docs, you can see that there are many different bits of information that can come back in a payment response: https://docs.adyen.com/developers/api-reference/payments-api#paymentresultadditionaldata.
In the AdditionalData of this library, there are only three assignable fields (because A) the input AdditionalData only supports a narrow subset of behaviour and B) the AdditionalData request struct is being reused for the response.
AdditionalData
From the Adyen docs, you can see that there are many different bits of information that can come back in a payment response: https://docs.adyen.com/developers/api-reference/payments-api#paymentresultadditionaldata.
In the
AdditionalData
of this library, there are only three assignable fields (because A) the inputAdditionalData
only supports a narrow subset of behaviour and B) theAdditionalData
request struct is being reused for the response.