Skip to content

Latest commit

 

History

History
102 lines (57 loc) · 2.73 KB

CursorPagination.md

File metadata and controls

102 lines (57 loc) · 2.73 KB

CursorPagination

Properties

Name Type Description Notes
PageSize Pointer to NullableInt32 [optional]
Next Pointer to NullableString [optional]

Methods

NewCursorPagination

func NewCursorPagination() *CursorPagination

NewCursorPagination instantiates a new CursorPagination 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

NewCursorPaginationWithDefaults

func NewCursorPaginationWithDefaults() *CursorPagination

NewCursorPaginationWithDefaults instantiates a new CursorPagination 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 *CursorPagination) GetPageSize() int32

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

GetPageSizeOk

func (o *CursorPagination) GetPageSizeOk() (*int32, 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 *CursorPagination) SetPageSize(v int32)

SetPageSize sets PageSize field to given value.

HasPageSize

func (o *CursorPagination) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

SetPageSizeNil

func (o *CursorPagination) SetPageSizeNil(b bool)

SetPageSizeNil sets the value for PageSize to be an explicit nil

UnsetPageSize

func (o *CursorPagination) UnsetPageSize()

UnsetPageSize ensures that no value is present for PageSize, not even an explicit nil

GetNext

func (o *CursorPagination) GetNext() string

GetNext returns the Next field if non-nil, zero value otherwise.

GetNextOk

func (o *CursorPagination) GetNextOk() (*string, bool)

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

SetNext

func (o *CursorPagination) SetNext(v string)

SetNext sets Next field to given value.

HasNext

func (o *CursorPagination) HasNext() bool

HasNext returns a boolean if a field has been set.

SetNextNil

func (o *CursorPagination) SetNextNil(b bool)

SetNextNil sets the value for Next to be an explicit nil

UnsetNext

func (o *CursorPagination) UnsetNext()

UnsetNext ensures that no value is present for Next, not even an explicit nil

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