diff --git a/src/typings/payout/amount.ts b/src/typings/payout/amount.ts index 4ce25c0bd..21765dad4 100644 --- a/src/typings/payout/amount.ts +++ b/src/typings/payout/amount.ts @@ -10,11 +10,11 @@ export class Amount { /** - * The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes). + * The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes) of the amount. */ "currency": string; /** - * The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units). + * The numeric value of the amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units). */ "value": number; diff --git a/src/typings/payout/responseAdditionalDataSepa.ts b/src/typings/payout/responseAdditionalDataSepa.ts index 43e2c5931..a6579835e 100644 --- a/src/typings/payout/responseAdditionalDataSepa.ts +++ b/src/typings/payout/responseAdditionalDataSepa.ts @@ -18,6 +18,10 @@ export class ResponseAdditionalDataSepa { */ "sepadirectdebit_mandateId"?: string; /** + * The date that the the shopper\'s bank account is charged. + */ + "sepadirectdebit_sepadirectdebit_dueDate"?: string; + /** * This field can take one of the following values: * OneOff: (OOFF) Direct debit instruction to initiate exactly one direct debit transaction. * First: (FRST) Initial/first collection in a series of direct debit instructions. * Recurring: (RCUR) Direct debit instruction to carry out regular direct debit transactions initiated by the creditor. * Final: (FNAL) Last/final collection in a series of direct debit instructions. Example: OOFF */ "sepadirectdebit_sequenceType"?: string; @@ -39,6 +43,12 @@ export class ResponseAdditionalDataSepa { "type": "string", "format": "" }, + { + "name": "sepadirectdebit_sepadirectdebit_dueDate", + "baseName": "sepadirectdebit.sepadirectdebit.dueDate", + "type": "string", + "format": "" + }, { "name": "sepadirectdebit_sequenceType", "baseName": "sepadirectdebit.sequenceType",