mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
bug fix in PaymentCompletionDetails
This commit is contained in:
@@ -61,8 +61,8 @@ function createAmountObject(currency: string, value: number): Amount {
|
||||
function createPaymentsDetailsRequest(): DetailsRequest {
|
||||
return {
|
||||
details: {
|
||||
mD: "mdValue",
|
||||
paRes: "paResValue",
|
||||
MD: "mdValue",
|
||||
PaRes: "paResValue",
|
||||
},
|
||||
paymentData: "Ab02b4c0!BQABAgCJN1wRZuGJmq8dMncmypvknj9s7l5Tj...",
|
||||
};
|
||||
|
||||
@@ -14,15 +14,15 @@ export class PaymentCompletionDetails {
|
||||
/**
|
||||
* A payment session identifier returned by the card issuer.
|
||||
*/
|
||||
'mD'?: string;
|
||||
'MD'?: string;
|
||||
/**
|
||||
* (3D) Payment Authentication Request data for the card issuer.
|
||||
*/
|
||||
'paReq'?: string;
|
||||
'PaReq'?: string;
|
||||
/**
|
||||
* (3D) Payment Authentication Response data by the card issuer.
|
||||
*/
|
||||
'paRes'?: string;
|
||||
'PaRes'?: string;
|
||||
/**
|
||||
* PayPal-generated token for recurring payments.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user