Skip to content

Commit

Permalink
Update generated code for v1249
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Sep 6, 2024
1 parent 6a75939 commit 75471c2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1247
v1249
12 changes: 8 additions & 4 deletions subscription.go
Original file line number Diff line number Diff line change
Expand Up @@ -788,10 +788,14 @@ type SubscriptionListParams struct {
// Only return subscriptions that were created during the given date interval.
Created *int64 `form:"created"`
// Only return subscriptions that were created during the given date interval.
CreatedRange *RangeQueryParams `form:"created"`
CurrentPeriodEnd *int64 `form:"current_period_end"`
CurrentPeriodEndRange *RangeQueryParams `form:"current_period_end"`
CurrentPeriodStart *int64 `form:"current_period_start"`
CreatedRange *RangeQueryParams `form:"created"`
// Only return subscriptions whose current_period_end falls within the given date interval.
CurrentPeriodEnd *int64 `form:"current_period_end"`
// Only return subscriptions whose current_period_end falls within the given date interval.
CurrentPeriodEndRange *RangeQueryParams `form:"current_period_end"`
// Only return subscriptions whose current_period_start falls within the given date interval.
CurrentPeriodStart *int64 `form:"current_period_start"`
// Only return subscriptions whose current_period_start falls within the given date interval.
CurrentPeriodStartRange *RangeQueryParams `form:"current_period_start"`
// The ID of the customer whose subscriptions will be retrieved.
Customer *string `form:"customer"`
Expand Down

0 comments on commit 75471c2

Please sign in to comment.