@@ -140,6 +140,9 @@ public static class Components extends StripeObject {
140140 @ SerializedName ("agentic_commerce_settings" )
141141 AgenticCommerceSettings agenticCommerceSettings ;
142142
143+ @ SerializedName ("balance_report" )
144+ BalanceReport balanceReport ;
145+
143146 @ SerializedName ("balances" )
144147 Balances balances ;
145148
@@ -228,6 +231,9 @@ public static class Components extends StripeObject {
228231 @ SerializedName ("payout_details" )
229232 PayoutDetails payoutDetails ;
230233
234+ @ SerializedName ("payout_reconciliation_report" )
235+ PayoutReconciliationReport payoutReconciliationReport ;
236+
231237 @ SerializedName ("payouts" )
232238 Payouts payouts ;
233239
@@ -369,6 +375,31 @@ public static class AgenticCommerceSettings extends StripeObject {
369375 public static class Features extends StripeObject {}
370376 }
371377
378+ /**
379+ * For more details about BalanceReport, please refer to the <a
380+ * href="https://docs.stripe.com/api">API Reference.</a>
381+ */
382+ @ Getter
383+ @ Setter
384+ @ EqualsAndHashCode (callSuper = false )
385+ public static class BalanceReport extends StripeObject {
386+ /** Whether the embedded component is enabled. */
387+ @ SerializedName ("enabled" )
388+ Boolean enabled ;
389+
390+ @ SerializedName ("features" )
391+ Features features ;
392+
393+ /**
394+ * For more details about Features, please refer to the <a
395+ * href="https://docs.stripe.com/api">API Reference.</a>
396+ */
397+ @ Getter
398+ @ Setter
399+ @ EqualsAndHashCode (callSuper = false )
400+ public static class Features extends StripeObject {}
401+ }
402+
372403 /**
373404 * For more details about Balances, please refer to the <a
374405 * href="https://docs.stripe.com/api">API Reference.</a>
@@ -1162,6 +1193,31 @@ public static class PayoutDetails extends StripeObject {
11621193 public static class Features extends StripeObject {}
11631194 }
11641195
1196+ /**
1197+ * For more details about PayoutReconciliationReport, please refer to the <a
1198+ * href="https://docs.stripe.com/api">API Reference.</a>
1199+ */
1200+ @ Getter
1201+ @ Setter
1202+ @ EqualsAndHashCode (callSuper = false )
1203+ public static class PayoutReconciliationReport extends StripeObject {
1204+ /** Whether the embedded component is enabled. */
1205+ @ SerializedName ("enabled" )
1206+ Boolean enabled ;
1207+
1208+ @ SerializedName ("features" )
1209+ Features features ;
1210+
1211+ /**
1212+ * For more details about Features, please refer to the <a
1213+ * href="https://docs.stripe.com/api">API Reference.</a>
1214+ */
1215+ @ Getter
1216+ @ Setter
1217+ @ EqualsAndHashCode (callSuper = false )
1218+ public static class Features extends StripeObject {}
1219+ }
1220+
11651221 /**
11661222 * For more details about Payouts, please refer to the <a href="https://docs.stripe.com/api">API
11671223 * Reference.</a>
0 commit comments