You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add query parameters to function arguments (#1304)
* add query parameters to function arguments. applied template checkout only for review
* removed code duplication from queryParameters feature
* fix code smells
* fix code smells on models import statements
* include funtionality for Date query parameters. Tested through Transfers unit tests
@@ -58,9 +59,8 @@ export class ModificationsApi extends Service {
58
59
/**
59
60
* @summary Update an authorised amount
60
61
* @param paymentPspReference {@link string } The [`pspReference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__resParam_pspReference) of the payment.
61
-
* @param idempotencyKey {@link string } A unique identifier for the message with a maximum of 64 characters (we recommend a UUID).
@@ -79,9 +79,8 @@ export class ModificationsApi extends Service {
79
79
/**
80
80
* @summary Cancel an authorised payment
81
81
* @param paymentPspReference {@link string } The [`pspReference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__resParam_pspReference) of the payment that you want to cancel.
82
-
* @param idempotencyKey {@link string } A unique identifier for the message with a maximum of 64 characters (we recommend a UUID).
@@ -100,9 +99,8 @@ export class ModificationsApi extends Service {
100
99
/**
101
100
* @summary Capture an authorised payment
102
101
* @param paymentPspReference {@link string } The [`pspReference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__resParam_pspReference) of the payment that you want to capture.
103
-
* @param idempotencyKey {@link string } A unique identifier for the message with a maximum of 64 characters (we recommend a UUID).
@@ -121,9 +119,8 @@ export class ModificationsApi extends Service {
121
119
/**
122
120
* @summary Refund a captured payment
123
121
* @param paymentPspReference {@link string } The [`pspReference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__resParam_pspReference) of the payment that you want to refund.
124
-
* @param idempotencyKey {@link string } A unique identifier for the message with a maximum of 64 characters (we recommend a UUID).
@@ -142,9 +139,8 @@ export class ModificationsApi extends Service {
142
139
/**
143
140
* @summary Refund or cancel a payment
144
141
* @param paymentPspReference {@link string } The [`pspReference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__resParam_pspReference) of the payment that you want to reverse.
145
-
* @param idempotencyKey {@link string } A unique identifier for the message with a maximum of 64 characters (we recommend a UUID).
0 commit comments