Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.95 KB

ServiceGetListResponse.md

File metadata and controls

134 lines (73 loc) · 3.95 KB

ServiceGetListResponse

Properties

Name Type Description Notes
Start Pointer to int32 Start index (inclusive) of the result set. The default value is 0. Must not be a negative number. [optional]
End Pointer to int32 Start index (inclusive) of the result set. The default value is 0. Must not be a negative number. [optional]
TotalCount Pointer to int32 Total number of services owned by the service owner. This doesn't mean the number of services contained in the response. [optional]
Services Pointer to []Service An array of services. [optional]

Methods

NewServiceGetListResponse

func NewServiceGetListResponse() *ServiceGetListResponse

NewServiceGetListResponse instantiates a new ServiceGetListResponse 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

NewServiceGetListResponseWithDefaults

func NewServiceGetListResponseWithDefaults() *ServiceGetListResponse

NewServiceGetListResponseWithDefaults instantiates a new ServiceGetListResponse 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

GetStart

func (o *ServiceGetListResponse) GetStart() int32

GetStart returns the Start field if non-nil, zero value otherwise.

GetStartOk

func (o *ServiceGetListResponse) GetStartOk() (*int32, bool)

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

SetStart

func (o *ServiceGetListResponse) SetStart(v int32)

SetStart sets Start field to given value.

HasStart

func (o *ServiceGetListResponse) HasStart() bool

HasStart returns a boolean if a field has been set.

GetEnd

func (o *ServiceGetListResponse) GetEnd() int32

GetEnd returns the End field if non-nil, zero value otherwise.

GetEndOk

func (o *ServiceGetListResponse) GetEndOk() (*int32, bool)

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

SetEnd

func (o *ServiceGetListResponse) SetEnd(v int32)

SetEnd sets End field to given value.

HasEnd

func (o *ServiceGetListResponse) HasEnd() bool

HasEnd returns a boolean if a field has been set.

GetTotalCount

func (o *ServiceGetListResponse) GetTotalCount() int32

GetTotalCount returns the TotalCount field if non-nil, zero value otherwise.

GetTotalCountOk

func (o *ServiceGetListResponse) GetTotalCountOk() (*int32, bool)

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

SetTotalCount

func (o *ServiceGetListResponse) SetTotalCount(v int32)

SetTotalCount sets TotalCount field to given value.

HasTotalCount

func (o *ServiceGetListResponse) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

GetServices

func (o *ServiceGetListResponse) GetServices() []Service

GetServices returns the Services field if non-nil, zero value otherwise.

GetServicesOk

func (o *ServiceGetListResponse) GetServicesOk() (*[]Service, bool)

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

SetServices

func (o *ServiceGetListResponse) SetServices(v []Service)

SetServices sets Services field to given value.

HasServices

func (o *ServiceGetListResponse) HasServices() bool

HasServices returns a boolean if a field has been set.

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