125 lines
3.4 KiB
Go
125 lines
3.4 KiB
Go
/*
|
|
STACKIT Git API
|
|
|
|
STACKIT Git management API.
|
|
|
|
API version: 1beta.0.4
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package gitbeta
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
// checks if the InstanceList type satisfies the MappedNullable interface at compile time
|
|
var _ MappedNullable = &InstanceList{}
|
|
|
|
/*
|
|
types and functions for instances
|
|
*/
|
|
|
|
// isArray
|
|
type InstanceListGetInstancesAttributeType = *[]Instance
|
|
type InstanceListGetInstancesArgType = []Instance
|
|
type InstanceListGetInstancesRetType = []Instance
|
|
|
|
func getInstanceListGetInstancesAttributeTypeOk(arg InstanceListGetInstancesAttributeType) (ret InstanceListGetInstancesRetType, ok bool) {
|
|
if arg == nil {
|
|
return ret, false
|
|
}
|
|
return *arg, true
|
|
}
|
|
|
|
func setInstanceListGetInstancesAttributeType(arg *InstanceListGetInstancesAttributeType, val InstanceListGetInstancesRetType) {
|
|
*arg = &val
|
|
}
|
|
|
|
// InstanceList A list of STACKIT Git instances.
|
|
type InstanceList struct {
|
|
// REQUIRED
|
|
Instances InstanceListGetInstancesAttributeType `json:"instances" required:"true"`
|
|
}
|
|
|
|
type _InstanceList InstanceList
|
|
|
|
// NewInstanceList instantiates a new InstanceList 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
|
|
func NewInstanceList(instances InstanceListGetInstancesArgType) *InstanceList {
|
|
this := InstanceList{}
|
|
setInstanceListGetInstancesAttributeType(&this.Instances, instances)
|
|
return &this
|
|
}
|
|
|
|
// NewInstanceListWithDefaults instantiates a new InstanceList 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
|
|
func NewInstanceListWithDefaults() *InstanceList {
|
|
this := InstanceList{}
|
|
return &this
|
|
}
|
|
|
|
// GetInstances returns the Instances field value
|
|
func (o *InstanceList) GetInstances() (ret InstanceListGetInstancesRetType) {
|
|
ret, _ = o.GetInstancesOk()
|
|
return ret
|
|
}
|
|
|
|
// GetInstancesOk returns a tuple with the Instances field value
|
|
// and a boolean to check if the value has been set.
|
|
func (o *InstanceList) GetInstancesOk() (ret InstanceListGetInstancesRetType, ok bool) {
|
|
return getInstanceListGetInstancesAttributeTypeOk(o.Instances)
|
|
}
|
|
|
|
// SetInstances sets field value
|
|
func (o *InstanceList) SetInstances(v InstanceListGetInstancesRetType) {
|
|
setInstanceListGetInstancesAttributeType(&o.Instances, v)
|
|
}
|
|
|
|
func (o InstanceList) ToMap() (map[string]interface{}, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
if val, ok := getInstanceListGetInstancesAttributeTypeOk(o.Instances); ok {
|
|
toSerialize["Instances"] = val
|
|
}
|
|
return toSerialize, nil
|
|
}
|
|
|
|
type NullableInstanceList struct {
|
|
value *InstanceList
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableInstanceList) Get() *InstanceList {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableInstanceList) Set(val *InstanceList) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableInstanceList) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableInstanceList) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableInstanceList(val *InstanceList) *NullableInstanceList {
|
|
return &NullableInstanceList{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableInstanceList) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableInstanceList) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|