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
@@ -1397,8 +1405,6 @@ class Schedule(StripeObject):
1397
1405
Literal[
1398
1406
"friday",
1399
1407
"monday",
1400
-
"saturday",
1401
-
"sunday",
1402
1408
"thursday",
1403
1409
"tuesday",
1404
1410
"wednesday",
@@ -1796,11 +1802,11 @@ class CreateParamsBusinessProfileSupportAddress(TypedDict):
1796
1802
"""
1797
1803
line1: NotRequired[str]
1798
1804
"""
1799
-
Address line 1 (e.g., street, PO Box, or company name).
1805
+
Address line 1, such as the street, PO Box, or company name.
1800
1806
"""
1801
1807
line2: NotRequired[str]
1802
1808
"""
1803
-
Address line 2 (e.g., apartment, suite, unit, or building).
1809
+
Address line 2, such as the apartment, suite, unit, or building.
1804
1810
"""
1805
1811
postal_code: NotRequired[str]
1806
1812
"""
@@ -2100,6 +2106,12 @@ class CreateParamsCapabilities(TypedDict):
2100
2106
"""
2101
2107
The paypal_payments capability.
2102
2108
"""
2109
+
paypay_payments: NotRequired[
2110
+
"Account.CreateParamsCapabilitiesPaypayPayments"
2111
+
]
2112
+
"""
2113
+
The paypay_payments capability.
2114
+
"""
2103
2115
payto_payments: NotRequired[
2104
2116
"Account.CreateParamsCapabilitiesPaytoPayments"
2105
2117
]
@@ -2535,6 +2547,12 @@ class CreateParamsCapabilitiesPaypalPayments(TypedDict):
2535
2547
Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
@@ -2821,11 +2839,11 @@ class CreateParamsCompanyAddress(TypedDict):
2821
2839
"""
2822
2840
line1: NotRequired[str]
2823
2841
"""
2824
-
Address line 1 (e.g., street, PO Box, or company name).
2842
+
Address line 1, such as the street, PO Box, or company name.
2825
2843
"""
2826
2844
line2: NotRequired[str]
2827
2845
"""
2828
-
Address line 2 (e.g., apartment, suite, unit, or building).
2846
+
Address line 2, such as the apartment, suite, unit, or building.
2829
2847
"""
2830
2848
postal_code: NotRequired[str]
2831
2849
"""
@@ -3247,11 +3265,11 @@ class CreateParamsIndividualAddress(TypedDict):
3247
3265
"""
3248
3266
line1: NotRequired[str]
3249
3267
"""
3250
-
Address line 1 (e.g., street, PO Box, or company name).
3268
+
Address line 1, such as the street, PO Box, or company name.
3251
3269
"""
3252
3270
line2: NotRequired[str]
3253
3271
"""
3254
-
Address line 2 (e.g., apartment, suite, unit, or building).
3272
+
Address line 2, such as the apartment, suite, unit, or building.
3255
3273
"""
3256
3274
postal_code: NotRequired[str]
3257
3275
"""
@@ -3347,11 +3365,11 @@ class CreateParamsIndividualRegisteredAddress(TypedDict):
3347
3365
"""
3348
3366
line1: NotRequired[str]
3349
3367
"""
3350
-
Address line 1 (e.g., street, PO Box, or company name).
3368
+
Address line 1, such as the street, PO Box, or company name.
3351
3369
"""
3352
3370
line2: NotRequired[str]
3353
3371
"""
3354
-
Address line 2 (e.g., apartment, suite, unit, or building).
3372
+
Address line 2, such as the apartment, suite, unit, or building.
3355
3373
"""
3356
3374
postal_code: NotRequired[str]
3357
3375
"""
@@ -3653,23 +3671,15 @@ class CreateParamsSettingsPayoutsSchedule(TypedDict):
3653
3671
]
3654
3672
]
3655
3673
"""
3656
-
The day of the week when available funds are paid out, specified as `monday`, `tuesday`, etc. (required and applicable only if `interval` is `weekly`.)
3674
+
The day of the week when available funds are paid out, specified as `monday`, `tuesday`, etc. Required and applicable only if `interval` is `weekly`.
The days of the week when available funds are paid out, specified as an array, e.g., [`monday`, `tuesday`]. (required and applicable only if `interval` is `weekly` and `weekly_anchor` is not set.)
3682
+
The days of the week when available funds are paid out, specified as an array, e.g., [`monday`, `tuesday`]. Required and applicable only if `interval` is `weekly`.
3673
3683
"""
3674
3684
3675
3685
classCreateParamsSettingsTaxForms(TypedDict):
@@ -3873,11 +3883,11 @@ class CreatePersonParamsAddress(TypedDict):
3873
3883
"""
3874
3884
line1: NotRequired[str]
3875
3885
"""
3876
-
Address line 1 (e.g., street, PO Box, or company name).
3886
+
Address line 1, such as the street, PO Box, or company name.
3877
3887
"""
3878
3888
line2: NotRequired[str]
3879
3889
"""
3880
-
Address line 2 (e.g., apartment, suite, unit, or building).
3890
+
Address line 2, such as the apartment, suite, unit, or building.
3881
3891
"""
3882
3892
postal_code: NotRequired[str]
3883
3893
"""
@@ -4007,11 +4017,11 @@ class CreatePersonParamsRegisteredAddress(TypedDict):
4007
4017
"""
4008
4018
line1: NotRequired[str]
4009
4019
"""
4010
-
Address line 1 (e.g., street, PO Box, or company name).
4020
+
Address line 1, such as the street, PO Box, or company name.
4011
4021
"""
4012
4022
line2: NotRequired[str]
4013
4023
"""
4014
-
Address line 2 (e.g., apartment, suite, unit, or building).
4024
+
Address line 2, such as the apartment, suite, unit, or building.
4015
4025
"""
4016
4026
postal_code: NotRequired[str]
4017
4027
"""
@@ -4545,11 +4555,11 @@ class ModifyPersonParamsAddress(TypedDict):
4545
4555
"""
4546
4556
line1: NotRequired[str]
4547
4557
"""
4548
-
Address line 1 (e.g., street, PO Box, or company name).
4558
+
Address line 1, such as the street, PO Box, or company name.
4549
4559
"""
4550
4560
line2: NotRequired[str]
4551
4561
"""
4552
-
Address line 2 (e.g., apartment, suite, unit, or building).
4562
+
Address line 2, such as the apartment, suite, unit, or building.
4553
4563
"""
4554
4564
postal_code: NotRequired[str]
4555
4565
"""
@@ -4679,11 +4689,11 @@ class ModifyPersonParamsRegisteredAddress(TypedDict):
4679
4689
"""
4680
4690
line1: NotRequired[str]
4681
4691
"""
4682
-
Address line 1 (e.g., street, PO Box, or company name).
4692
+
Address line 1, such as the street, PO Box, or company name.
4683
4693
"""
4684
4694
line2: NotRequired[str]
4685
4695
"""
4686
-
Address line 2 (e.g., apartment, suite, unit, or building).
4696
+
Address line 2, such as the apartment, suite, unit, or building.
0 commit comments