Back to Hydra

TokenPagination

internal/httpclient/docs/TokenPagination.md

26.2.02.6 KB
Original Source

TokenPagination

Properties

NameTypeDescriptionNotes
PageSizePointer to int64Items per page This is the number of items per page to return. For details on pagination please head over to the pagination documentation.[optional] [default to 250]
PageTokenPointer to stringNext Page Token The next page token. For details on pagination please head over to the pagination documentation.[optional]

Methods

NewTokenPagination

func NewTokenPagination() *TokenPagination

NewTokenPagination instantiates a new TokenPagination object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewTokenPaginationWithDefaults

func NewTokenPaginationWithDefaults() *TokenPagination

NewTokenPaginationWithDefaults instantiates a new TokenPagination object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetPageSize

func (o *TokenPagination) GetPageSize() int64

GetPageSize returns the PageSize field if non-nil, zero value otherwise.

GetPageSizeOk

func (o *TokenPagination) GetPageSizeOk() (*int64, bool)

GetPageSizeOk returns a tuple with the PageSize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPageSize

func (o *TokenPagination) SetPageSize(v int64)

SetPageSize sets PageSize field to given value.

HasPageSize

func (o *TokenPagination) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

GetPageToken

func (o *TokenPagination) GetPageToken() string

GetPageToken returns the PageToken field if non-nil, zero value otherwise.

GetPageTokenOk

func (o *TokenPagination) GetPageTokenOk() (*string, bool)

GetPageTokenOk returns a tuple with the PageToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPageToken

func (o *TokenPagination) SetPageToken(v string)

SetPageToken sets PageToken field to given value.

HasPageToken

func (o *TokenPagination) HasPageToken() bool

HasPageToken returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]