Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 1.25 KB

pagination.md

File metadata and controls

19 lines (14 loc) · 1.25 KB

Pagination

Example Usage

import { Pagination } from "@unkey/api/models/components";

let value: Pagination = {
  cursor: "cursor_xyz123",
  hasMore: true,
};

Fields

Field Type Required Description Example
cursor string Opaque token for retrieving the next set of results cursor_xyz123
hasMore boolean Indicates if more results exist beyond this page true