Skip to content

Commit

Permalink
Update generated code for v1115
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Jul 3, 2024
1 parent 608e490 commit 29feb90
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1114
v1115
4 changes: 2 additions & 2 deletions stripe/billing/_meter.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class ListEventSummariesParams(RequestOptions):
"""
end_time: int
"""
The timestamp from when to stop aggregating meter events (exclusive).
The timestamp from when to stop aggregating meter events (exclusive). Must be aligned with minute boundaries.
"""
ending_before: NotRequired[str]
"""
Expand All @@ -142,7 +142,7 @@ class ListEventSummariesParams(RequestOptions):
"""
start_time: int
"""
The timestamp from when to start aggregating meter events (inclusive).
The timestamp from when to start aggregating meter events (inclusive). Must be aligned with minute boundaries.
"""
starting_after: NotRequired[str]
"""
Expand Down
4 changes: 2 additions & 2 deletions stripe/billing/_meter_event_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class MeterEventSummary(StripeObject):
"""
end_time: int
"""
End timestamp for this event summary (inclusive).
End timestamp for this event summary (exclusive). Must be aligned with minute boundaries.
"""
id: str
"""
Expand All @@ -40,5 +40,5 @@ class MeterEventSummary(StripeObject):
"""
start_time: int
"""
Start timestamp for this event summary (inclusive).
Start timestamp for this event summary (inclusive). Must be aligned with minute boundaries.
"""
4 changes: 2 additions & 2 deletions stripe/billing/_meter_event_summary_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ListParams(TypedDict):
"""
end_time: int
"""
The timestamp from when to stop aggregating meter events (exclusive).
The timestamp from when to stop aggregating meter events (exclusive). Must be aligned with minute boundaries.
"""
ending_before: NotRequired[str]
"""
Expand All @@ -33,7 +33,7 @@ class ListParams(TypedDict):
"""
start_time: int
"""
The timestamp from when to start aggregating meter events (inclusive).
The timestamp from when to start aggregating meter events (inclusive). Must be aligned with minute boundaries.
"""
starting_after: NotRequired[str]
"""
Expand Down

0 comments on commit 29feb90

Please sign in to comment.