You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class PaginatedResponse(BaseModel):
"""A generic paginated response that follows a simple format.
:param data: The list of items for the current page
:param has_more: Whether there are more items available after this set
"""
data: List[Dict[str, Any]]
has_more: bool
🚀 Describe the new functionality needed
Right now the pagination results are:
We want to add URL just like stripe pagination does.
💡 Why is this needed? What if we don't build it?
Improves user experience.
Other thoughts
No response
The text was updated successfully, but these errors were encountered: