Skip to content

Latest commit

 

History

History
80 lines (45 loc) · 2.3 KB

PaginationCursorMeta.md

File metadata and controls

80 lines (45 loc) · 2.3 KB

PaginationCursorMeta

Properties

Name Type Description Notes
NextCursor Pointer to string Cursor for the next page. [optional]
Limit Pointer to int32 Maximum number of results returned. [optional]

Methods

NewPaginationCursorMeta

func NewPaginationCursorMeta() *PaginationCursorMeta

NewPaginationCursorMeta instantiates a new PaginationCursorMeta 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

NewPaginationCursorMetaWithDefaults

func NewPaginationCursorMetaWithDefaults() *PaginationCursorMeta

NewPaginationCursorMetaWithDefaults instantiates a new PaginationCursorMeta 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

GetNextCursor

func (o *PaginationCursorMeta) GetNextCursor() string

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

GetNextCursorOk

func (o *PaginationCursorMeta) 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 *PaginationCursorMeta) SetNextCursor(v string)

SetNextCursor sets NextCursor field to given value.

HasNextCursor

func (o *PaginationCursorMeta) HasNextCursor() bool

HasNextCursor returns a boolean if a field has been set.

GetLimit

func (o *PaginationCursorMeta) GetLimit() int32

GetLimit returns the Limit field if non-nil, zero value otherwise.

GetLimitOk

func (o *PaginationCursorMeta) GetLimitOk() (*int32, bool)

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

SetLimit

func (o *PaginationCursorMeta) SetLimit(v int32)

SetLimit sets Limit field to given value.

HasLimit

func (o *PaginationCursorMeta) HasLimit() bool

HasLimit returns a boolean if a field has been set.

Back to API list | Back to README