Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generated code for beta #1947

Closed
wants to merge 47 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
d5ef112
Updated upload artifact ci action (#1941)
prathmesh-stripe Jan 25, 2025
73961c6
Update generated code (#1936)
stripe-openapi[bot] Jan 27, 2025
dfafa65
Bump version to 28.3.0
helenye-stripe Jan 27, 2025
7c99196
Ensure `getRawJsonObject` returns data for constructed webhooks (#1946)
xavdid-stripe Feb 5, 2025
5ff5113
Bump version to 28.3.1
xavdid-stripe Feb 7, 2025
67ec448
add codeowners file (#1948)
xavdid-stripe Feb 13, 2025
032d672
Update generated code (#1943)
stripe-openapi[bot] Feb 24, 2025
1cf6c5b
Bump version to 28.4.0
prathmesh-stripe Feb 24, 2025
9ae1c08
Fix publish-docs token permissions (#1951)
jar-stripe Mar 4, 2025
1444581
Add @EqualsAndHashCode annotations
mbroshi-stripe Mar 11, 2025
e9c1325
Revert "Add @EqualsAndHashCode annotations"
mbroshi-stripe Mar 11, 2025
6b047be
Add @EqualsAndHashCode annotations (#1955)
mbroshi-stripe Mar 17, 2025
76da3a4
Merge upstream and update generated code for v1572
stripe-openapi[bot] Mar 19, 2025
3f18261
Update generated code for v1573
stripe-openapi[bot] Mar 19, 2025
6cfde23
Update generated code for v1574
stripe-openapi[bot] Mar 19, 2025
e96e0d6
Support for StripeAccount in StripeClient, and StripeContext on V1 (#…
ramya-stripe Mar 19, 2025
660a3ae
Merge upstream and update generated code for v1583
stripe-openapi[bot] Mar 19, 2025
af9e059
Update generated code for v1585
stripe-openapi[bot] Mar 19, 2025
33f8728
Update generated code for v1586
stripe-openapi[bot] Mar 20, 2025
77e856c
Update generated code for v1587
stripe-openapi[bot] Mar 20, 2025
a873234
Update generated code for v1588
stripe-openapi[bot] Mar 20, 2025
312fe5c
Update generated code for v1590
stripe-openapi[bot] Mar 20, 2025
07f94d8
Update generated code for v1591
stripe-openapi[bot] Mar 20, 2025
2ac7619
Update generated code for v1593
stripe-openapi[bot] Mar 20, 2025
aceee40
Update generated code for v1594
stripe-openapi[bot] Mar 20, 2025
71cf700
Update generated code for v1595
stripe-openapi[bot] Mar 20, 2025
039ce60
Update generated code for v1597
stripe-openapi[bot] Mar 20, 2025
61ec1b9
Update generated code for v1598
stripe-openapi[bot] Mar 20, 2025
96c8934
Update generated code for v1599
stripe-openapi[bot] Mar 20, 2025
8cd0d60
Update generated code for v1601
stripe-openapi[bot] Mar 20, 2025
7367653
Update generated code for v1602
stripe-openapi[bot] Mar 20, 2025
b6273ac
Update generated code for v1604
stripe-openapi[bot] Mar 21, 2025
5a19e3b
Update generated code for v1605
stripe-openapi[bot] Mar 21, 2025
c9d0e37
Update generated code for v1606
stripe-openapi[bot] Mar 21, 2025
115dad4
Update generated code for v1607
stripe-openapi[bot] Mar 21, 2025
59beb90
Update generated code for v1608
stripe-openapi[bot] Mar 21, 2025
db74f48
Update generated code for v1609
stripe-openapi[bot] Mar 21, 2025
903c752
Update generated code for v1610
stripe-openapi[bot] Mar 21, 2025
4ebe999
Update generated code for v1611
stripe-openapi[bot] Mar 21, 2025
e818f9c
Update generated code for v1612
stripe-openapi[bot] Mar 21, 2025
77dda35
Update generated code for v1613
stripe-openapi[bot] Mar 24, 2025
df3663b
Update generated code for v1615
stripe-openapi[bot] Mar 24, 2025
4bbffce
Add generated v2 test support (#1953)
helenye-stripe Mar 25, 2025
49d3e37
Merge upstream and update generated code for v1618
stripe-openapi[bot] Mar 25, 2025
fcdbb7b
Update generated code for v1620
stripe-openapi[bot] Mar 25, 2025
5700c53
Update generated code for v1621
stripe-openapi[bot] Mar 25, 2025
9db0ffe
Update generated code for v1622
stripe-openapi[bot] Mar 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update generated code for v1593
  • Loading branch information
stripe-openapi[bot] committed Mar 20, 2025
commit 2ac7619f6aabac0a2bdc3458fa6051ab84066b2a
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1591
v1593
8 changes: 8 additions & 0 deletions src/main/java/com/stripe/model/SubscriptionItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ public class SubscriptionItem extends ApiResource
@SerializedName("created")
Long created;

/** The end time of this subscription item's current billing period. */
@SerializedName("current_period_end")
Long currentPeriodEnd;

/** The start time of this subscription item's current billing period. */
@SerializedName("current_period_start")
Long currentPeriodStart;

/** Always true for a deleted object. */
@SerializedName("deleted")
Boolean deleted;
Expand Down
Loading