Pagination support for Stripe API requests.
Provides version-aware pagination that automatically selects the appropriate pagination strategy:
Pagination support for Stripe API requests. Provides version-aware pagination that automatically selects the appropriate pagination strategy: - v1: Cursor-based pagination with starting_after/ending_before - v2: URL-based pagination with next_page_url
Pagination protocol for Stripe API responses.
Defines a common interface for pagination across API versions:
Pagination protocol for Stripe API responses. Defines a common interface for pagination across API versions: - v1: Cursor-based pagination with starting_after/ending_before - v2: URL-based pagination with next_page_url
V1 cursor-based pagination implementation.
Stripe v1 API uses cursor-based pagination with:
V1 cursor-based pagination implementation. Stripe v1 API uses cursor-based pagination with: - has_more: Boolean indicating if more results exist - starting_after: ID of the last object to paginate after - ending_before: ID of the first object to paginate before (reverse)
V2 URL-based pagination implementation.
Stripe v2 API uses URL-based pagination with:
Unlike v1's cursor-based approach, v2 provides complete URLs for navigation.
V2 URL-based pagination implementation. Stripe v2 API uses URL-based pagination with: - next_page_url: Full URL for the next page of results - previous_page_url: Full URL for the previous page of results Unlike v1's cursor-based approach, v2 provides complete URLs for navigation.
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |