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/2020-08-27/AccountLinks.d.ts
-10Lines changed: 0 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -47,11 +47,6 @@ declare module 'stripe' {
47
47
*/
48
48
expand?: Array<string>;
49
49
50
-
/**
51
-
* Alternate name for refresh_url to ensure backwards compatibility
52
-
*/
53
-
failure_url?: string;
54
-
55
50
/**
56
51
* The URL that the user will be redirected to if the account link is no longer valid. Your `refresh_url` should trigger a method on your server to create a new account link using this API, with the same parameters, and redirect the user to the new account link.
57
52
*/
@@ -61,11 +56,6 @@ declare module 'stripe' {
61
56
* The URL that the user will be redirected to upon leaving or completing the linked flow.
62
57
*/
63
58
return_url?: string;
64
-
65
-
/**
66
-
* Alternate name for return_url to ensure backwards compatibility
* The Unix timestamp marking when the Stripe Services Agreement was accepted by the account representative
671
675
*/
672
-
date: number|null;
676
+
date?: number|null;
673
677
674
678
/**
675
679
* The IP address from which the Stripe Services Agreement was accepted by the account representative
676
680
*/
677
-
ip: string|null;
681
+
ip?: string|null;
678
682
679
683
/**
680
684
* The user agent of the browser from which the Stripe Services Agreement was accepted by the account representative
681
685
*/
682
-
user_agent: string|null;
686
+
user_agent?: string|null;
683
687
}
684
688
685
689
typeType='custom'|'express'|'standard';
@@ -727,7 +731,7 @@ declare module 'stripe' {
727
731
capabilities?: AccountCreateParams.Capabilities;
728
732
729
733
/**
730
-
* Information about the company or business. This field is null unless `business_type` is set to `company`, `government_entity`, or `non_profit`.
734
+
* Information about the company or business. This field is available for any `business_type`.
731
735
*/
732
736
company?: AccountCreateParams.Company;
733
737
@@ -768,11 +772,6 @@ declare module 'stripe' {
768
772
*/
769
773
metadata?: MetadataParam|null;
770
774
771
-
/**
772
-
* (Deprecated) Alternative to `capabilities`. The set of capabilities you want to unlock for this account. Each capability will be inactive until you have provided its specific requirements and Stripe has verified them. An account may have some of its requested capabilities be active and some be inactive.
* Options for customizing how the account functions within Stripe.
778
777
*/
@@ -1345,19 +1344,6 @@ declare module 'stripe' {
1345
1344
}
1346
1345
}
1347
1346
1348
-
typeRequestedCapability=
1349
-
|'au_becs_debit_payments'
1350
-
|'bacs_debit_payments'
1351
-
|'card_issuing'
1352
-
|'card_payments'
1353
-
|'cartes_bancaires_payments'
1354
-
|'fpx_payments'
1355
-
|'jcb_payments'
1356
-
|'legacy_payments'
1357
-
|'tax_reporting_us_1099_k'
1358
-
|'tax_reporting_us_1099_misc'
1359
-
|'transfers';
1360
-
1361
1347
interfaceSettings{
1362
1348
/**
1363
1349
* Settings used to apply the account's branding to email receipts, invoices, Checkout, and other products.
@@ -1557,7 +1543,7 @@ declare module 'stripe' {
1557
1543
capabilities?: AccountUpdateParams.Capabilities;
1558
1544
1559
1545
/**
1560
-
* Information about the company or business. This field is null unless `business_type` is set to `company`, `government_entity`, or `non_profit`.
1546
+
* Information about the company or business. This field is available for any `business_type`.
1561
1547
*/
1562
1548
company?: AccountUpdateParams.Company;
1563
1549
@@ -1593,11 +1579,6 @@ declare module 'stripe' {
1593
1579
*/
1594
1580
metadata?: MetadataParam|null;
1595
1581
1596
-
/**
1597
-
* (Deprecated) Alternative to `capabilities`. The set of capabilities you want to unlock for this account. Each capability will be inactive until you have provided its specific requirements and Stripe has verified them. An account may have some of its requested capabilities be active and some be inactive.
0 commit comments