pagination

package
v0.1.0-beta.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 20, 2024 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CursorPage

type CursorPage[T any] struct {
	// Cursor to fetch the next page
	NextPage string `json:"next_page"`
	// Items of the page
	Data []T            `json:"data"`
	JSON cursorPageJSON `json:"-"`
	// contains filtered or unexported fields
}

func (*CursorPage[T]) GetNextPage

func (r *CursorPage[T]) GetNextPage() (res *CursorPage[T], err error)

NextPage returns the next page as defined by this pagination style. When there is no next page, this function will return a 'nil' for the page value, but will not return an error

func (*CursorPage[T]) SetPageConfig

func (r *CursorPage[T]) SetPageConfig(cfg *requestconfig.RequestConfig, res *http.Response)

func (*CursorPage[T]) UnmarshalJSON

func (r *CursorPage[T]) UnmarshalJSON(data []byte) (err error)

type CursorPageAutoPager

type CursorPageAutoPager[T any] struct {
	// contains filtered or unexported fields
}

func NewCursorPageAutoPager

func NewCursorPageAutoPager[T any](page *CursorPage[T], err error) *CursorPageAutoPager[T]

func (*CursorPageAutoPager[T]) Current

func (r *CursorPageAutoPager[T]) Current() T

func (*CursorPageAutoPager[T]) Err

func (r *CursorPageAutoPager[T]) Err() error

func (*CursorPageAutoPager[T]) Index

func (r *CursorPageAutoPager[T]) Index() int

func (*CursorPageAutoPager[T]) Next

func (r *CursorPageAutoPager[T]) Next() bool

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL