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/typings/balancePlatform/balance.ts
+4-4
Original file line number
Diff line number
Diff line change
@@ -10,23 +10,23 @@
10
10
11
11
exportclassBalance{
12
12
/**
13
-
* The current balance minus any reserved balance.
13
+
* The balance available for use.
14
14
*/
15
15
'available': number;
16
16
/**
17
-
* The current balance of funds in the balance account. These are the funds from all transactions with a value date in the past that have not yet been paid out.
17
+
* The sum of transactions that have already been settled.
18
18
*/
19
19
'balance': number;
20
20
/**
21
21
* The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance.
22
22
*/
23
23
'currency': string;
24
24
/**
25
-
* The amount of funds that Adyen has processed for this account, but will be settled in a future date. For more information, see how to settle funds for users in your [platform](https://docs.adyen.com/platforms/settle-funds) and [marketplace](https://docs.adyen.com/marketplaces/settle-funds).
25
+
* The sum of the transactions that will be settled in the future.
26
26
*/
27
27
'pending'?: number;
28
28
/**
29
-
* The amount reserved for payments that have been [authorised](https://docs.adyen.com/issuing/payment-stages/#authorised), but not yet [captured](https://docs.adyen.com/issuing/payment-stages/#captured) by the merchant. Applies only to [Adyen-issued cards](https://docs.adyen.com/issuing).
Copy file name to clipboardExpand all lines: src/typings/balancePlatform/platformPaymentConfiguration.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ export class PlatformPaymentConfiguration {
14
14
*/
15
15
'salesDayClosingTime'?: string;
16
16
/**
17
-
* Specifies after how many business days the funds in a [settlement batch](https://docs.adyen.com/platforms/settle-funds/sales-day-settlement#settlement-batch) are made available in this balance account. Possible values: **1** to **10**, or **null**. * Setting this value to an integer enables Sales day settlement in this balance account. See how Sales day settlement works in your [marketplace](https://docs.adyen.com/marketplaces/settle-funds/sales-day-settlement) or [platform](https://docs.adyen.com/platforms/settle-funds/sales-day-settlement). * Setting this value to **null** enables Pass-through settlement in this balance account. See how Pass-through settlement works in your [marketplace](https://docs.adyen.com/marketplaces/settle-funds/pass-through-settlement) or [platform](https://docs.adyen.com/platforms/settle-funds/pass-through-settlement). Default value: **null**.
17
+
* Specifies after how many business days the funds in a [settlement batch](https://docs.adyen.com/platforms/settle-funds/sales-day-settlement#settlement-batch) are made available in this balance account. Possible values: **1** to **20**, or **null**. * Setting this value to an integer enables Sales day settlement in this balance account. See how Sales day settlement works in your [marketplace](https://docs.adyen.com/marketplaces/settle-funds/sales-day-settlement) or [platform](https://docs.adyen.com/platforms/settle-funds/sales-day-settlement). * Setting this value to **null** enables Pass-through settlement in this balance account. See how Pass-through settlement works in your [marketplace](https://docs.adyen.com/marketplaces/settle-funds/pass-through-settlement) or [platform](https://docs.adyen.com/platforms/settle-funds/pass-through-settlement). Default value: **null**.
0 commit comments