Skip to content

Commit

Permalink
Update generated code for v1528
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Mar 5, 2025
1 parent b2aedf8 commit 17cae53
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1527
v1528
7 changes: 6 additions & 1 deletion src/main/java/com/stripe/model/checkout/Session.java
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,10 @@ public class Session extends ApiResource implements HasId, MetadataStore<Session
@SerializedName("shipping_cost")
ShippingCost shippingCost;

/** Shipping information for this Checkout Session. */
@SerializedName("shipping_details")
com.stripe.model.ShippingDetails shippingDetails;

/** The shipping rate options applied to this Session. */
@SerializedName("shipping_options")
List<Session.ShippingOption> shippingOptions;
Expand Down Expand Up @@ -974,7 +978,7 @@ public static class CollectedInformation extends StripeObject {

/** Shipping information for this Checkout Session. */
@SerializedName("shipping_details")
ShippingDetails shippingDetails;
com.stripe.model.checkout.Session.CollectedInformation.ShippingDetails shippingDetails;

/** Customer’s tax ids for this Checkout Session. */
@SerializedName("tax_ids")
Expand Down Expand Up @@ -3953,6 +3957,7 @@ public void setResponseGetter(StripeResponseGetter responseGetter) {
trySetResponseGetter(setupIntent, responseGetter);
trySetResponseGetter(shippingAddressCollection, responseGetter);
trySetResponseGetter(shippingCost, responseGetter);
trySetResponseGetter(shippingDetails, responseGetter);
trySetResponseGetter(subscription, responseGetter);
trySetResponseGetter(taxIdCollection, responseGetter);
trySetResponseGetter(totalDetails, responseGetter);
Expand Down

0 comments on commit 17cae53

Please sign in to comment.