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: types/Accounts.d.ts
+22-15Lines changed: 22 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,14 @@ declare module 'stripe' {
7
7
* properties on the account like its current requirements or if the account is
8
8
* enabled to make live charges or receive payouts.
9
9
*
10
-
* For accounts where [controller.requirement_collection](https://stripe.com/api/accounts/object#account_object-controller-requirement_collection)
10
+
* For accounts where [controller.requirement_collection](https://docs.stripe.com/api/accounts/object#account_object-controller-requirement_collection)
11
11
* is `application`, which includes Custom accounts, the properties below are always
12
12
* returned.
13
13
*
14
-
* For accounts where [controller.requirement_collection](https://stripe.com/api/accounts/object#account_object-controller-requirement_collection)
14
+
* For accounts where [controller.requirement_collection](https://docs.stripe.com/api/accounts/object#account_object-controller-requirement_collection)
15
15
* is `stripe`, which includes Standard and Express accounts, some properties are only returned
16
-
* until you create an [Account Link](https://stripe.com/api/account_links) or [Account Session](https://stripe.com/api/account_sessions)
17
-
* to start Connect Onboarding. Learn about the [differences between accounts](https://stripe.com/connect/accounts).
16
+
* until you create an [Account Link](https://docs.stripe.com/api/account_links) or [Account Session](https://docs.stripe.com/api/account_sessions)
17
+
* to start Connect Onboarding. Learn about the [differences between accounts](https://docs.stripe.com/connect/accounts).
18
18
*/
19
19
interfaceAccount{
20
20
/**
@@ -69,7 +69,7 @@ declare module 'stripe' {
69
69
deleted?: void;
70
70
71
71
/**
72
-
* Whether account details have been submitted. Accounts with Stripe Dashboard access, which includes Standard accounts, cannot receive payouts before this is true. Accounts where this is false should be directed to [an onboarding flow](https://stripe.com/connect/onboarding) to finish submitting account details.
72
+
* Whether account details have been submitted. Accounts with Stripe Dashboard access, which includes Standard accounts, cannot receive payouts before this is true. Accounts where this is false should be directed to [an onboarding flow](https://docs.stripe.com/connect/onboarding) to finish submitting account details.
73
73
*/
74
74
details_submitted: boolean;
75
75
@@ -93,9 +93,9 @@ declare module 'stripe' {
93
93
/**
94
94
* This is an object representing a person associated with a Stripe account.
95
95
*
96
-
* A platform can only access a subset of data in a person for an account where [account.controller.requirement_collection](https://stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `stripe`, which includes Standard and Express accounts, after creating an Account Link or Account Session to start Connect onboarding.
96
+
* A platform can only access a subset of data in a person for an account where [account.controller.requirement_collection](https://docs.stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `stripe`, which includes Standard and Express accounts, after creating an Account Link or Account Session to start Connect onboarding.
97
97
*
98
-
* See the [Standard onboarding](https://stripe.com/connect/standard-accounts) or [Express onboarding](https://stripe.com/connect/express-accounts) documentation for information about prefilling information and account onboarding steps. Learn more about [handling identity verification with the API](https://stripe.com/connect/handling-api-verification#person-information).
98
+
* See the [Standard onboarding](https://docs.stripe.com/connect/standard-accounts) or [Express onboarding](https://docs.stripe.com/connect/express-accounts) documentation for information about prefilling information and account onboarding steps. Learn more about [handling identity verification with the API](https://docs.stripe.com/connect/handling-api-verification#person-information).
99
99
*/
100
100
individual?: Stripe.Person;
101
101
@@ -137,7 +137,7 @@ declare module 'stripe' {
137
137
estimated_worker_count?: number|null;
138
138
139
139
/**
140
-
* [The merchant category code for the account](https://stripe.com/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide.
140
+
* [The merchant category code for the account](https://docs.stripe.com/connect/setting-mcc). MCCs are used to classify businesses based on the goods or services they provide.
141
141
*/
142
142
mcc: string|null;
143
143
@@ -189,7 +189,7 @@ declare module 'stripe' {
189
189
namespaceBusinessProfile{
190
190
interfaceAnnualRevenue{
191
191
/**
192
-
* A non-negative integer representing the amount in the [smallest currency unit](https://stripe.com/currencies#zero-decimal).
192
+
* A non-negative integer representing the amount in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal).
193
193
*/
194
194
amount: number|null;
195
195
@@ -213,7 +213,7 @@ declare module 'stripe' {
213
213
214
214
interfaceMonthlyEstimatedRevenue{
215
215
/**
216
-
* A non-negative integer representing how much to charge in the [smallest currency unit](https://stripe.com/currencies#zero-decimal).
216
+
* A non-negative integer representing how much to charge in the [smallest currency unit](https://docs.stripe.com/currencies#zero-decimal).
217
217
*/
218
218
amount: number;
219
219
@@ -436,6 +436,11 @@ declare module 'stripe' {
436
436
*/
437
437
paynow_payments?: Capabilities.PaynowPayments;
438
438
439
+
/**
440
+
* The status of the pix payments capability of the account, or whether the account can directly process pix charges.
441
+
*/
442
+
pix_payments?: Capabilities.PixPayments;
443
+
439
444
/**
440
445
* The status of the promptpay payments capability of the account, or whether the account can directly process promptpay charges.
* The company's legal name. Also available for accounts where [controller.requirement_collection](https://stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `stripe`.
682
+
* The company's legal name. Also available for accounts where [controller.requirement_collection](https://docs.stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `stripe`.
676
683
*/
677
684
name?: string|null;
678
685
679
686
/**
680
-
* The Kana variation of the company's legal name (Japan only). Also available for accounts where [controller.requirement_collection](https://stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `stripe`.
687
+
* The Kana variation of the company's legal name (Japan only). Also available for accounts where [controller.requirement_collection](https://docs.stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `stripe`.
681
688
*/
682
689
name_kana?: string|null;
683
690
684
691
/**
685
-
* The Kanji variation of the company's legal name (Japan only). Also available for accounts where [controller.requirement_collection](https://stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `stripe`.
692
+
* The Kanji variation of the company's legal name (Japan only). Also available for accounts where [controller.requirement_collection](https://docs.stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `stripe`.
686
693
*/
687
694
name_kanji?: string|null;
688
695
@@ -709,7 +716,7 @@ declare module 'stripe' {
709
716
registration_date?: Company.RegistrationDate;
710
717
711
718
/**
712
-
* The category identifying the legal structure of the company or legal entity. Also available for accounts where [controller.requirement_collection](https://stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `stripe`. See [Business structure](https://stripe.com/docs/connect/identity-verification#business-structure) for more details.
719
+
* The category identifying the legal structure of the company or legal entity. Also available for accounts where [controller.requirement_collection](https://docs.stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `stripe`. See [Business structure](https://stripe.com/docs/connect/identity-verification#business-structure) for more details.
713
720
*/
714
721
structure?: Company.Structure;
715
722
@@ -1539,7 +1546,7 @@ declare module 'stripe' {
1539
1546
1540
1547
interfacePayouts{
1541
1548
/**
1542
-
* A Boolean indicating if Stripe should try to reclaim negative balances from an attached bank account. See [Understanding Connect account balances](https://stripe.com/connect/account-balances) for details. The default value is `false` when [controller.requirement_collection](https://stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `application`, which includes Custom accounts, otherwise `true`.
1549
+
* A Boolean indicating if Stripe should try to reclaim negative balances from an attached bank account. See [Understanding Connect account balances](https://docs.stripe.com/connect/account-balances) for details. The default value is `false` when [controller.requirement_collection](https://docs.stripe.com/api/accounts/object#account_object-controller-requirement_collection) is `application`, which includes Custom accounts, otherwise `true`.
0 commit comments