Skip to content

Commit f0b78f1

Browse files
Update generated code for v2140 and
1 parent 0f9813d commit f0b78f1

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

API_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
871b39e6175f9f90f8b11ecf1b61a91eb727dfb7
1+
88aa59022b32620f4d66d6196e3b42d5a0f86bbb

OPENAPI_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2138
1+
v2140

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,12 @@ public class InvoiceLineItem extends ApiResource implements HasId, MetadataStore
134134
@Setter(lombok.AccessLevel.NONE)
135135
ExpandableField<Subscription> subscription;
136136

137+
/**
138+
* The subtotal of the line item, in cents (or local equivalent), before any discounts or taxes.
139+
*/
140+
@SerializedName("subtotal")
141+
Long subtotal;
142+
137143
/** The tax calculation identifiers of the line item. */
138144
@SerializedName("tax_calculation_reference")
139145
TaxCalculationReference taxCalculationReference;

src/main/java/com/stripe/param/WebhookEndpointCreateParams.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,10 @@ public enum ApiVersion implements ApiRequestParams.EnumParam {
639639
VERSION_2025_11_17_CLOVER("2025-11-17.clover"),
640640

641641
@SerializedName("2025-12-15.clover")
642-
VERSION_2025_12_15_CLOVER("2025-12-15.clover");
642+
VERSION_2025_12_15_CLOVER("2025-12-15.clover"),
643+
644+
@SerializedName("2026-01-28.clover")
645+
VERSION_2026_01_28_CLOVER("2026-01-28.clover");
643646

644647
@Getter(onMethod_ = {@Override})
645648
private final String value;

0 commit comments

Comments
 (0)