Skip to content

Latest commit

 

History

History
123 lines (68 loc) · 4.72 KB

CollectionModelOfDesktopUsageResponseModel.md

File metadata and controls

123 lines (68 loc) · 4.72 KB

CollectionModelOfDesktopUsageResponseModel

Properties

Name Type Description Notes
Items []DesktopUsageResponseModel List of items.
ContinuationToken Pointer to NullableString If present, indicates to the caller that the query was not complete, and they should call the API again specifying the continuation token as a query parameter. [optional]
TotalItems Pointer to NullableInt32 Indicates the total number of items in the collection, which may be more than the number of Items returned, if there is a ContinuationToken. Only returned in the response to `$search` APIs. [optional]

Methods

NewCollectionModelOfDesktopUsageResponseModel

func NewCollectionModelOfDesktopUsageResponseModel(items []DesktopUsageResponseModel, ) *CollectionModelOfDesktopUsageResponseModel

NewCollectionModelOfDesktopUsageResponseModel instantiates a new CollectionModelOfDesktopUsageResponseModel 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

NewCollectionModelOfDesktopUsageResponseModelWithDefaults

func NewCollectionModelOfDesktopUsageResponseModelWithDefaults() *CollectionModelOfDesktopUsageResponseModel

NewCollectionModelOfDesktopUsageResponseModelWithDefaults instantiates a new CollectionModelOfDesktopUsageResponseModel 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

GetItems

func (o *CollectionModelOfDesktopUsageResponseModel) GetItems() []DesktopUsageResponseModel

GetItems returns the Items field if non-nil, zero value otherwise.

GetItemsOk

func (o *CollectionModelOfDesktopUsageResponseModel) GetItemsOk() (*[]DesktopUsageResponseModel, bool)

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

SetItems

func (o *CollectionModelOfDesktopUsageResponseModel) SetItems(v []DesktopUsageResponseModel)

SetItems sets Items field to given value.

GetContinuationToken

func (o *CollectionModelOfDesktopUsageResponseModel) GetContinuationToken() string

GetContinuationToken returns the ContinuationToken field if non-nil, zero value otherwise.

GetContinuationTokenOk

func (o *CollectionModelOfDesktopUsageResponseModel) GetContinuationTokenOk() (*string, bool)

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

SetContinuationToken

func (o *CollectionModelOfDesktopUsageResponseModel) SetContinuationToken(v string)

SetContinuationToken sets ContinuationToken field to given value.

HasContinuationToken

func (o *CollectionModelOfDesktopUsageResponseModel) HasContinuationToken() bool

HasContinuationToken returns a boolean if a field has been set.

SetContinuationTokenNil

func (o *CollectionModelOfDesktopUsageResponseModel) SetContinuationTokenNil(b bool)

SetContinuationTokenNil sets the value for ContinuationToken to be an explicit nil

UnsetContinuationToken

func (o *CollectionModelOfDesktopUsageResponseModel) UnsetContinuationToken()

UnsetContinuationToken ensures that no value is present for ContinuationToken, not even an explicit nil

GetTotalItems

func (o *CollectionModelOfDesktopUsageResponseModel) GetTotalItems() int32

GetTotalItems returns the TotalItems field if non-nil, zero value otherwise.

GetTotalItemsOk

func (o *CollectionModelOfDesktopUsageResponseModel) GetTotalItemsOk() (*int32, bool)

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

SetTotalItems

func (o *CollectionModelOfDesktopUsageResponseModel) SetTotalItems(v int32)

SetTotalItems sets TotalItems field to given value.

HasTotalItems

func (o *CollectionModelOfDesktopUsageResponseModel) HasTotalItems() bool

HasTotalItems returns a boolean if a field has been set.

SetTotalItemsNil

func (o *CollectionModelOfDesktopUsageResponseModel) SetTotalItemsNil(b bool)

SetTotalItemsNil sets the value for TotalItems to be an explicit nil

UnsetTotalItems

func (o *CollectionModelOfDesktopUsageResponseModel) UnsetTotalItems()

UnsetTotalItems ensures that no value is present for TotalItems, not even an explicit nil

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