4.37.0

(feat): Pagination: page.response is the typed API response object for each page (e.g., ListUsersPaginationResponse), not a raw HTTP wrapper. This is a typing-only improvement; no runtime behavior changes and existing code continues to work. If you explicitly type-annotate pagers, use two type parameters (SyncPager[T, R] / AsyncPager[T, R]).

1# Iterate pages and access the typed response per page
2pager = client.users.list(...)
3for page in pager.iter_pages():
4 print(page.response) # typed response object