Skip to content

Commit 20089d1

Browse files
Update generated code for v2132 and
1 parent a8a530a commit 20089d1

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

API_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
05614fb8576b3e813717fbf637cb4e3cb2dbddb6
1+
da57cbebb9d2476793b4d2b33cd1baf035a39595

OPENAPI_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2131
1+
v2132

src/main/java/com/stripe/model/AccountSession.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)