Skip to content

Commit

Permalink
Update generated code for v1155 (#1840)
Browse files Browse the repository at this point in the history
Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
  • Loading branch information
stripe-openapi[bot] committed Jul 25, 2024
1 parent 05cdf0b commit 411f1fd
Show file tree
Hide file tree
Showing 3 changed files with 364 additions and 3 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1154
v1155
40 changes: 40 additions & 0 deletions src/main/java/com/stripe/model/AccountSession.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,12 @@ public static class Components extends StripeObject {
@SerializedName("payouts_list")
PayoutsList payoutsList;

@SerializedName("tax_registrations")
TaxRegistrations taxRegistrations;

@SerializedName("tax_settings")
TaxSettings taxSettings;

@Getter
@Setter
@EqualsAndHashCode(callSuper = false)
Expand Down Expand Up @@ -441,6 +447,40 @@ public static class PayoutsList extends StripeObject {
@EqualsAndHashCode(callSuper = false)
public static class Features extends StripeObject {}
}

@Getter
@Setter
@EqualsAndHashCode(callSuper = false)
public static class TaxRegistrations extends StripeObject {
/** Whether the embedded component is enabled. */
@SerializedName("enabled")
Boolean enabled;

@SerializedName("features")
Features features;

@Getter
@Setter
@EqualsAndHashCode(callSuper = false)
public static class Features extends StripeObject {}
}

@Getter
@Setter
@EqualsAndHashCode(callSuper = false)
public static class TaxSettings extends StripeObject {
/** Whether the embedded component is enabled. */
@SerializedName("enabled")
Boolean enabled;

@SerializedName("features")
Features features;

@Getter
@Setter
@EqualsAndHashCode(callSuper = false)
public static class Features extends StripeObject {}
}
}

@Override
Expand Down
Loading

0 comments on commit 411f1fd

Please sign in to comment.