Liking cljdoc? Tell your friends :D

stripe-clojure.http.pagination.core

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 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
raw docstring

stripe-clojure.http.pagination.protocol

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
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
raw docstring

stripe-clojure.http.pagination.v1

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)
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)
raw docstring

stripe-clojure.http.pagination.v2

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.

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.
raw docstring

cljdoc builds & hosts documentation for Clojure/Script libraries

Keyboard shortcuts
Ctrl+kJump to recent docs
Move to previous article
Move to next article
Ctrl+/Jump to the search field
× close