Skip to content

Commit

Permalink
Update generated code for v1266
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Sep 18, 2024
1 parent 1e0bd99 commit 08392f2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1263
v1266
9 changes: 9 additions & 0 deletions src/main/java/com/stripe/model/Invoice.java
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,15 @@ public class Invoice extends ApiResource implements HasId, MetadataStore<Invoice
@SerializedName("automatic_tax")
AutomaticTax automaticTax;

/**
* The time when this invoice is currently scheduled to be automatically finalized. The field will
* be {@code null} if the invoice is not scheduled to finalize in the future. If the invoice is
* not in the draft state, this field will always be {@code null} - see {@code finalized_at} for
* the time when an already-finalized invoice was finalized.
*/
@SerializedName("automatically_finalizes_at")
Long automaticallyFinalizesAt;

/**
* Indicates the reason why the invoice was created.
*
Expand Down
9 changes: 9 additions & 0 deletions src/main/java/com/stripe/model/QuotePreviewInvoice.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,15 @@ public class QuotePreviewInvoice extends ApiResource implements HasId {
@SerializedName("automatic_tax")
AutomaticTax automaticTax;

/**
* The time when this invoice is currently scheduled to be automatically finalized. The field will
* be {@code null} if the invoice is not scheduled to finalize in the future. If the invoice is
* not in the draft state, this field will always be {@code null} - see {@code finalized_at} for
* the time when an already-finalized invoice was finalized.
*/
@SerializedName("automatically_finalizes_at")
Long automaticallyFinalizesAt;

/**
* Indicates the reason why the invoice was created.
*
Expand Down

0 comments on commit 08392f2

Please sign in to comment.