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
* @param id {@link string } The unique identifier of the account holder.
73
+
* @param formType {@link 'US1099k' | 'US1099nec' } The type of tax form you want to retrieve. Accepted values are **us1099k** and **us1099nec**
74
+
* @param year {@link number } The tax year in YYYY format for the tax form you want to retrieve
Copy file name to clipboardExpand all lines: src/typings/balancePlatform/balanceAccount.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ export class BalanceAccount {
20
20
*/
21
21
'balances'?: Array<Balance>;
22
22
/**
23
-
* The default three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance account. The default value is **EUR**.
23
+
* The default three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance account. The default value is **EUR**. > After a balance account is created, you cannot change its default currency.
Copy file name to clipboardExpand all lines: src/typings/balancePlatform/balanceAccountBase.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ export class BalanceAccountBase {
15
15
*/
16
16
'accountHolderId': string;
17
17
/**
18
-
* The default three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance account. The default value is **EUR**.
18
+
* The default three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance account. The default value is **EUR**. > After a balance account is created, you cannot change its default currency.
Copy file name to clipboardExpand all lines: src/typings/balancePlatform/balanceAccountInfo.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ export class BalanceAccountInfo {
15
15
*/
16
16
'accountHolderId': string;
17
17
/**
18
-
* The default three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance account. The default value is **EUR**.
18
+
* The default three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance account. The default value is **EUR**. > After a balance account is created, you cannot change its default currency.
Copy file name to clipboardExpand all lines: src/typings/balancePlatform/balanceAccountUpdateRequest.ts
-9Lines changed: 0 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -15,10 +15,6 @@ export class BalanceAccountUpdateRequest {
15
15
*/
16
16
'accountHolderId'?: string;
17
17
/**
18
-
* The default currency code of this balance account, in three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) format. The default value is **EUR**.
19
-
*/
20
-
'defaultCurrencyCode'?: string;
21
-
/**
22
18
* A human-readable description of the balance account, maximum 300 characters. You can use this parameter to distinguish between multiple balance accounts under an account holder.
23
19
*/
24
20
'description'?: string;
@@ -48,11 +44,6 @@ export class BalanceAccountUpdateRequest {
0 commit comments