Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2 KB

Paging.md

File metadata and controls

82 lines (45 loc) · 2 KB

Paging

Properties

Name Type Description Notes
Next Pointer to NextPage [optional]
Prev Pointer to PreviousPage [optional]

Methods

NewPaging

func NewPaging() *Paging

NewPaging instantiates a new Paging 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

NewPagingWithDefaults

func NewPagingWithDefaults() *Paging

NewPagingWithDefaults instantiates a new Paging 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

GetNext

func (o *Paging) GetNext() NextPage

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

GetNextOk

func (o *Paging) GetNextOk() (*NextPage, 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 *Paging) SetNext(v NextPage)

SetNext sets Next field to given value.

HasNext

func (o *Paging) HasNext() bool

HasNext returns a boolean if a field has been set.

GetPrev

func (o *Paging) GetPrev() PreviousPage

GetPrev returns the Prev field if non-nil, zero value otherwise.

GetPrevOk

func (o *Paging) GetPrevOk() (*PreviousPage, bool)

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

SetPrev

func (o *Paging) SetPrev(v PreviousPage)

SetPrev sets Prev field to given value.

HasPrev

func (o *Paging) HasPrev() bool

HasPrev returns a boolean if a field has been set.

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