Skip to content

Commit

Permalink
Update generated code for v996
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Apr 26, 2024
1 parent 3d1a3b5 commit f73c678
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
@@ -1 +1 @@
v994
v996
14 changes: 12 additions & 2 deletions src/main/java/com/stripe/model/Invoice.java
Expand Up @@ -466,11 +466,21 @@ public class Invoice extends ApiResource implements HasId, MetadataStore<Invoice
@SerializedName("payment_settings")
PaymentSettings paymentSettings;

/** End of the usage period during which invoice items were added to this invoice. */
/**
* End of the usage period during which invoice items were added to this invoice. This looks back
* one period for a subscription invoice. Use the <a
* href="https://stripe.com/api/invoices/line_item#invoice_line_item_object-period">line item
* period</a> to get the service period for each price.
*/
@SerializedName("period_end")
Long periodEnd;

/** Start of the usage period during which invoice items were added to this invoice. */
/**
* Start of the usage period during which invoice items were added to this invoice. This looks
* back one period for a subscription invoice. Use the <a
* href="https://stripe.com/api/invoices/line_item#invoice_line_item_object-period">line item
* period</a> to get the service period for each price.
*/
@SerializedName("period_start")
Long periodStart;

Expand Down

0 comments on commit f73c678

Please sign in to comment.