Skip to content

Latest commit

 

History

History
123 lines (68 loc) · 3.4 KB

PaginatedUARsList.md

File metadata and controls

123 lines (68 loc) · 3.4 KB

PaginatedUARsList

Properties

Name Type Description Notes
Next Pointer to NullableString The cursor with which to continue pagination if additional result pages exist. [optional]
Previous Pointer to NullableString The cursor used to obtain the current result page. [optional]
Results []UAR

Methods

NewPaginatedUARsList

func NewPaginatedUARsList(results []UAR, ) *PaginatedUARsList

NewPaginatedUARsList instantiates a new PaginatedUARsList 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

NewPaginatedUARsListWithDefaults

func NewPaginatedUARsListWithDefaults() *PaginatedUARsList

NewPaginatedUARsListWithDefaults instantiates a new PaginatedUARsList 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 *PaginatedUARsList) GetNext() string

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

GetNextOk

func (o *PaginatedUARsList) 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 *PaginatedUARsList) SetNext(v string)

SetNext sets Next field to given value.

HasNext

func (o *PaginatedUARsList) HasNext() bool

HasNext returns a boolean if a field has been set.

SetNextNil

func (o *PaginatedUARsList) SetNextNil(b bool)

SetNextNil sets the value for Next to be an explicit nil

UnsetNext

func (o *PaginatedUARsList) UnsetNext()

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

GetPrevious

func (o *PaginatedUARsList) GetPrevious() string

GetPrevious returns the Previous field if non-nil, zero value otherwise.

GetPreviousOk

func (o *PaginatedUARsList) GetPreviousOk() (*string, bool)

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

SetPrevious

func (o *PaginatedUARsList) SetPrevious(v string)

SetPrevious sets Previous field to given value.

HasPrevious

func (o *PaginatedUARsList) HasPrevious() bool

HasPrevious returns a boolean if a field has been set.

SetPreviousNil

func (o *PaginatedUARsList) SetPreviousNil(b bool)

SetPreviousNil sets the value for Previous to be an explicit nil

UnsetPrevious

func (o *PaginatedUARsList) UnsetPrevious()

UnsetPrevious ensures that no value is present for Previous, not even an explicit nil

GetResults

func (o *PaginatedUARsList) GetResults() []UAR

GetResults returns the Results field if non-nil, zero value otherwise.

GetResultsOk

func (o *PaginatedUARsList) GetResultsOk() (*[]UAR, bool)

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

SetResults

func (o *PaginatedUARsList) SetResults(v []UAR)

SetResults sets Results field to given value.

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