Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 4.16 KB

ApiClientPaginator.md

File metadata and controls

160 lines (87 loc) · 4.16 KB

ApiClientPaginator

Properties

Name Type Description Notes
Count Pointer to int32 Number of items in the current page [optional]
Total Pointer to int64 Total number of items found [optional]
Offset Pointer to int32 [optional] [default to 0]
Limit Pointer to int32 [optional] [default to 10]
Results Pointer to []ApiClient [optional]

Methods

NewApiClientPaginator

func NewApiClientPaginator() *ApiClientPaginator

NewApiClientPaginator instantiates a new ApiClientPaginator 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

NewApiClientPaginatorWithDefaults

func NewApiClientPaginatorWithDefaults() *ApiClientPaginator

NewApiClientPaginatorWithDefaults instantiates a new ApiClientPaginator 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 *ApiClientPaginator) GetCount() int32

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

GetCountOk

func (o *ApiClientPaginator) 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 *ApiClientPaginator) SetCount(v int32)

SetCount sets Count field to given value.

HasCount

func (o *ApiClientPaginator) HasCount() bool

HasCount returns a boolean if a field has been set.

GetTotal

func (o *ApiClientPaginator) GetTotal() int64

GetTotal returns the Total field if non-nil, zero value otherwise.

GetTotalOk

func (o *ApiClientPaginator) GetTotalOk() (*int64, bool)

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

SetTotal

func (o *ApiClientPaginator) SetTotal(v int64)

SetTotal sets Total field to given value.

HasTotal

func (o *ApiClientPaginator) HasTotal() bool

HasTotal returns a boolean if a field has been set.

GetOffset

func (o *ApiClientPaginator) GetOffset() int32

GetOffset returns the Offset field if non-nil, zero value otherwise.

GetOffsetOk

func (o *ApiClientPaginator) GetOffsetOk() (*int32, bool)

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

SetOffset

func (o *ApiClientPaginator) SetOffset(v int32)

SetOffset sets Offset field to given value.

HasOffset

func (o *ApiClientPaginator) HasOffset() bool

HasOffset returns a boolean if a field has been set.

GetLimit

func (o *ApiClientPaginator) GetLimit() int32

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

GetLimitOk

func (o *ApiClientPaginator) 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 *ApiClientPaginator) SetLimit(v int32)

SetLimit sets Limit field to given value.

HasLimit

func (o *ApiClientPaginator) HasLimit() bool

HasLimit returns a boolean if a field has been set.

GetResults

func (o *ApiClientPaginator) GetResults() []ApiClient

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

GetResultsOk

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

SetResults sets Results field to given value.

HasResults

func (o *ApiClientPaginator) HasResults() bool

HasResults returns a boolean if a field has been set.

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