Skip to content

Latest commit

 

History

History
144 lines (79 loc) · 3.96 KB

PaginatedDataSourceList.md

File metadata and controls

144 lines (79 loc) · 3.96 KB

PaginatedDataSourceList

Properties

Name Type Description Notes
Count int32
Next Pointer to NullableString [optional]
Previous Pointer to NullableString [optional]
Results []DataSource

Methods

NewPaginatedDataSourceList

func NewPaginatedDataSourceList(count int32, results []DataSource, ) *PaginatedDataSourceList

NewPaginatedDataSourceList instantiates a new PaginatedDataSourceList 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

NewPaginatedDataSourceListWithDefaults

func NewPaginatedDataSourceListWithDefaults() *PaginatedDataSourceList

NewPaginatedDataSourceListWithDefaults instantiates a new PaginatedDataSourceList 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

GetCount

func (o *PaginatedDataSourceList) GetCount() int32

GetCount returns the Count field if non-nil, zero value otherwise.

GetCountOk

func (o *PaginatedDataSourceList) GetCountOk() (*int32, bool)

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

SetCount

func (o *PaginatedDataSourceList) SetCount(v int32)

SetCount sets Count field to given value.

GetNext

func (o *PaginatedDataSourceList) GetNext() string

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

GetNextOk

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

SetNext sets Next field to given value.

HasNext

func (o *PaginatedDataSourceList) HasNext() bool

HasNext returns a boolean if a field has been set.

SetNextNil

func (o *PaginatedDataSourceList) SetNextNil(b bool)

SetNextNil sets the value for Next to be an explicit nil

UnsetNext

func (o *PaginatedDataSourceList) UnsetNext()

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

GetPrevious

func (o *PaginatedDataSourceList) GetPrevious() string

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

GetPreviousOk

func (o *PaginatedDataSourceList) 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 *PaginatedDataSourceList) SetPrevious(v string)

SetPrevious sets Previous field to given value.

HasPrevious

func (o *PaginatedDataSourceList) HasPrevious() bool

HasPrevious returns a boolean if a field has been set.

SetPreviousNil

func (o *PaginatedDataSourceList) SetPreviousNil(b bool)

SetPreviousNil sets the value for Previous to be an explicit nil

UnsetPrevious

func (o *PaginatedDataSourceList) UnsetPrevious()

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

GetResults

func (o *PaginatedDataSourceList) GetResults() []DataSource

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

GetResultsOk

func (o *PaginatedDataSourceList) GetResultsOk() (*[]DataSource, 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 *PaginatedDataSourceList) SetResults(v []DataSource)

SetResults sets Results field to given value.

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