@@ -144,6 +144,14 @@ public static class Components extends StripeObject {
144144 @ SerializedName ("capital_financing_promotion" )
145145 CapitalFinancingPromotion capitalFinancingPromotion ;
146146
147+ /**
148+ * Configuration for the <a
149+ * href="https://stripe.com/connect/supported-embedded-components/check-scanning/">check
150+ * scanning</a> embedded component.
151+ */
152+ @ SerializedName ("check_scanning" )
153+ CheckScanning checkScanning ;
154+
147155 @ SerializedName ("disputes_list" )
148156 DisputesList disputesList ;
149157
@@ -423,6 +431,31 @@ public static class CapitalFinancingPromotion extends StripeObject {
423431 public static class Features extends StripeObject {}
424432 }
425433
434+ /**
435+ * For more details about CheckScanning, please refer to the <a
436+ * href="https://docs.stripe.com/api">API Reference.</a>
437+ */
438+ @ Getter
439+ @ Setter
440+ @ EqualsAndHashCode (callSuper = false )
441+ public static class CheckScanning extends StripeObject {
442+ /** Whether the embedded component is enabled. */
443+ @ SerializedName ("enabled" )
444+ Boolean enabled ;
445+
446+ @ SerializedName ("features" )
447+ Features features ;
448+
449+ /**
450+ * For more details about Features, please refer to the <a
451+ * href="https://docs.stripe.com/api">API Reference.</a>
452+ */
453+ @ Getter
454+ @ Setter
455+ @ EqualsAndHashCode (callSuper = false )
456+ public static class Features extends StripeObject {}
457+ }
458+
426459 /**
427460 * For more details about DisputesList, please refer to the <a
428461 * href="https://docs.stripe.com/api">API Reference.</a>
0 commit comments