enum StepZen_PaginationType
Specifies pagination type.
Values
NEXT_CURSOR
Forward pagination is supported by a opaque next cursor value.
A request to a back-end returns a next cursor value
that can be used on a subsequent request to fetch
the next page of values.
With NEXT_CURSOR
a virtual field nextCursor
is
required to be set containing the opaque next cursor value.
OFFSET
Forward pagination is supported by an edge (record) offset value.
With OFFSET
a virtual field total
is
required to be set containing the total number of edges (records)
in the paged set.
PAGE_NUMBER
Forward pagination is supported by an page number value.
With PAGE_NUMBER
a virtual field total
is
required to be set containing the total number of pages
in the paged set.