internal/httpclient/docs/TokenPagination.md
| Name | Type | Description | Notes |
|---|---|---|---|
| PageSize | Pointer to int64 | Items 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] |
| PageToken | Pointer to string | Next Page Token The next page token. For details on pagination please head over to the pagination documentation. | [optional] |
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
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
func (o *TokenPagination) GetPageSize() int64
GetPageSize returns the PageSize field if non-nil, zero value otherwise.
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.
func (o *TokenPagination) SetPageSize(v int64)
SetPageSize sets PageSize field to given value.
func (o *TokenPagination) HasPageSize() bool
HasPageSize returns a boolean if a field has been set.
func (o *TokenPagination) GetPageToken() string
GetPageToken returns the PageToken field if non-nil, zero value otherwise.
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.
func (o *TokenPagination) SetPageToken(v string)
SetPageToken sets PageToken field to given value.
func (o *TokenPagination) HasPageToken() bool
HasPageToken returns a boolean if a field has been set.