Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.21 KB

File metadata and controls

82 lines (45 loc) · 2.21 KB

Pagination

Properties

Name Type Description Notes
HasMore bool
NextCursor NullableString

Methods

NewPagination

func NewPagination(hasMore bool, nextCursor NullableString, ) *Pagination

NewPagination instantiates a new Pagination 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

NewPaginationWithDefaults

func NewPaginationWithDefaults() *Pagination

NewPaginationWithDefaults instantiates a new Pagination 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

GetHasMore

func (o *Pagination) GetHasMore() bool

GetHasMore returns the HasMore field if non-nil, zero value otherwise.

GetHasMoreOk

func (o *Pagination) GetHasMoreOk() (*bool, bool)

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

SetHasMore

func (o *Pagination) SetHasMore(v bool)

SetHasMore sets HasMore field to given value.

GetNextCursor

func (o *Pagination) GetNextCursor() string

GetNextCursor returns the NextCursor field if non-nil, zero value otherwise.

GetNextCursorOk

func (o *Pagination) GetNextCursorOk() (*string, bool)

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

SetNextCursor

func (o *Pagination) SetNextCursor(v string)

SetNextCursor sets NextCursor field to given value.

SetNextCursorNil

func (o *Pagination) SetNextCursorNil(b bool)

SetNextCursorNil sets the value for NextCursor to be an explicit nil

UnsetNextCursor

func (o *Pagination) UnsetNextCursor()

UnsetNextCursor ensures that no value is present for NextCursor, not even an explicit nil

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