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
Copy file name to clipboardExpand all lines: src/Adyen/Model/Transfers/Amount.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -299,7 +299,7 @@ public function getCurrency()
299
299
/**
300
300
* Sets currency
301
301
*
302
-
* @param string $currency The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes).
302
+
* @param string $currency The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes#currency-codes) of the amount.
303
303
*
304
304
* @return self
305
305
*/
@@ -323,7 +323,7 @@ public function getValue()
323
323
/**
324
324
* Sets value
325
325
*
326
-
* @param int $value The amount of the transaction, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units).
326
+
* @param int $value The numeric value of the amount, in [minor units](https://docs.adyen.com/development-resources/currency-codes#minor-units).
Copy file name to clipboardExpand all lines: src/Adyen/Model/Transfers/BankCategoryData.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -345,7 +345,7 @@ public function getPriority()
345
345
/**
346
346
* Sets priority
347
347
*
348
-
* @param string|null $priority The priority for the bank transfer. This sets the speed at which the transfer is sent and the fees that you have to pay. Required for transfers with `category` **bank**. Possible values: * **regular**: for normal, low-value transactions. * **fast**: a faster way to transfer funds, but the fees are higher. Recommended for high-priority, low-value transactions. * **wire**: the fastest way to transfer funds, but this has the highest fees. Recommended for high-priority, high-value transactions. * **instant**: for instant funds transfers within the United States and in [SEPA locations](https://www.ecb.europa.eu/paym/integration/retail/sepa/html/index.en.html). * **crossBorder**: for high-value transfers to a recipient in a different country. * **internal**: for transfers to an Adyen-issued business bank account (by bank account number/IBAN).
348
+
* @param string|null $priority The priority for the bank transfer. This sets the speed at which the transfer is sent and the fees that you have to pay. Required for transfers with `category` **bank**. Possible values: * **regular**: For normal, low-value transactions. * **fast**: A faster way to transfer funds, but the fees are higher. Recommended for high-priority, low-value transactions. * **wire**: The fastest way to transfer funds, but this has the highest fees. Recommended for high-priority, high-value transactions. * **instant**: For instant funds transfers within the United States and in [SEPA locations](https://www.ecb.europa.eu/paym/integration/retail/sepa/html/index.en.html). * **crossBorder**: For high-value transfers to a recipient in a different country. * **internal**: For transfers to an Adyen-issued business bank account (by bank account number/IBAN).
Copy file name to clipboardExpand all lines: src/Adyen/Model/Transfers/ConfirmationTrackingData.php
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -219,6 +219,7 @@ public function getModelName()
219
219
}
220
220
221
221
publicconstSTATUS_CREDITED = 'credited';
222
+
publicconstSTATUS_ACCEPTED = 'accepted';
222
223
publicconstTYPE_CONFIRMATION = 'confirmation';
223
224
224
225
/**
@@ -230,6 +231,7 @@ public function getStatusAllowableValues()
230
231
{
231
232
return [
232
233
self::STATUS_CREDITED,
234
+
self::STATUS_ACCEPTED,
233
235
];
234
236
}
235
237
/**
@@ -341,7 +343,7 @@ public function getStatus()
341
343
/**
342
344
* Sets status
343
345
*
344
-
* @param string $status The status of the transfer. Possible values: - **credited**: the funds are credited to your user's transfer instrument or bank account.
346
+
* @param string $status The status of the transfer. Possible values: - **credited**: the funds are credited to your user's transfer instrument or bank account.- **accepted**: the request is accepted by the integration.
0 commit comments