Skip to content

Commit

Permalink
Pagination related comments
Browse files Browse the repository at this point in the history
  • Loading branch information
prathmesh-stripe committed Sep 30, 2024
1 parent c0e5da3 commit 825f629
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion stripe/v2/_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Request(StripeObject):

type: Literal["request"]
"""
Open Enum. Event reason type.
Event reason type.
"""
request: Optional[Request]
"""
Expand Down
6 changes: 6 additions & 0 deletions stripe/v2/core/_event_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,17 @@
class EventService(StripeService):
class ListParams(TypedDict):
limit: NotRequired[int]
"""
The page size.
"""
object_id: str
"""
Primary object ID used to retrieve related events.
"""
page: NotRequired[str]
"""
The requested page number.
"""

class RetrieveParams(TypedDict):
pass
Expand Down

0 comments on commit 825f629

Please sign in to comment.