bug fix in PaymentCompletionDetails

This commit is contained in:
wouterboe
2021-05-04 16:46:19 +02:00
parent 867649debf
commit 54bbb3858e
2 changed files with 5 additions and 5 deletions

View File

@@ -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...",
};

View File

@@ -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.
*/