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
The minimum balance amount to retain per currency after automatic payouts. Only funds that exceed these amounts are paid out. Learn more about the [minimum balances for automatic payouts](https://docs.stripe.com/payouts/minimum-balances-for-automatic-payouts).
@@ -69,9 +89,27 @@ class Schedule(StripeObject):
69
89
"""
70
90
Whether the funds in this account can be paid out.
Hour at which the customized start of day begins according to the given timezone. Must be a [supported customized start of day hour](https://docs.stripe.com/connect/customized-start-of-day#available-timezones-and-cutoffs).
103
+
"""
104
+
minutes: int
105
+
"""
106
+
Minutes at which the customized start of day begins according to the given timezone. Must be either 0 or 30.
107
+
"""
108
+
timezone: str
109
+
"""
110
+
Timezone for the customized start of day. Must be a [supported customized start of day timezone](https://docs.stripe.com/connect/customized-start-of-day#available-timezones-and-cutoffs).
111
+
"""
112
+
75
113
delay_days: int
76
114
"""
77
115
The number of days charge funds are held before becoming available.
@@ -80,6 +118,11 @@ class SettlementTiming(StripeObject):
80
118
"""
81
119
The number of days charge funds are held before becoming available. If present, overrides the default, or minimum available, for the account.
82
120
"""
121
+
start_of_day: Optional[StartOfDay]
122
+
"""
123
+
Customized start of day configuration for automatic payouts to group and send payments in local timezones with a customized day starting time. For details, see our [Customized start of day](https://docs.stripe.com/connect/customized-start-of-day) documentation.
0 commit comments