/* STACKIT IaaS API This API allows you to create and modify IaaS resources. API version: 2beta1 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. package iaasbeta import ( "encoding/json" ) // checks if the GetServerLog200Response type satisfies the MappedNullable interface at compile time var _ MappedNullable = &GetServerLog200Response{} /* types and functions for output */ // isNotNullableString type GetServerLog200ResponseGetOutputAttributeType = *string func getGetServerLog200ResponseGetOutputAttributeTypeOk(arg GetServerLog200ResponseGetOutputAttributeType) (ret GetServerLog200ResponseGetOutputRetType, ok bool) { if arg == nil { return ret, false } return *arg, true } func setGetServerLog200ResponseGetOutputAttributeType(arg *GetServerLog200ResponseGetOutputAttributeType, val GetServerLog200ResponseGetOutputRetType) { *arg = &val } type GetServerLog200ResponseGetOutputArgType = string type GetServerLog200ResponseGetOutputRetType = string // GetServerLog200Response struct for GetServerLog200Response type GetServerLog200Response struct { Output GetServerLog200ResponseGetOutputAttributeType `json:"output,omitempty"` } // NewGetServerLog200Response instantiates a new GetServerLog200Response 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 NewGetServerLog200Response() *GetServerLog200Response { this := GetServerLog200Response{} return &this } // NewGetServerLog200ResponseWithDefaults instantiates a new GetServerLog200Response 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 NewGetServerLog200ResponseWithDefaults() *GetServerLog200Response { this := GetServerLog200Response{} return &this } // GetOutput returns the Output field value if set, zero value otherwise. func (o *GetServerLog200Response) GetOutput() (res GetServerLog200ResponseGetOutputRetType) { res, _ = o.GetOutputOk() return } // GetOutputOk returns a tuple with the Output field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *GetServerLog200Response) GetOutputOk() (ret GetServerLog200ResponseGetOutputRetType, ok bool) { return getGetServerLog200ResponseGetOutputAttributeTypeOk(o.Output) } // HasOutput returns a boolean if a field has been set. func (o *GetServerLog200Response) HasOutput() bool { _, ok := o.GetOutputOk() return ok } // SetOutput gets a reference to the given string and assigns it to the Output field. func (o *GetServerLog200Response) SetOutput(v GetServerLog200ResponseGetOutputRetType) { setGetServerLog200ResponseGetOutputAttributeType(&o.Output, v) } func (o GetServerLog200Response) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} if val, ok := getGetServerLog200ResponseGetOutputAttributeTypeOk(o.Output); ok { toSerialize["Output"] = val } return toSerialize, nil } type NullableGetServerLog200Response struct { value *GetServerLog200Response isSet bool } func (v NullableGetServerLog200Response) Get() *GetServerLog200Response { return v.value } func (v *NullableGetServerLog200Response) Set(val *GetServerLog200Response) { v.value = val v.isSet = true } func (v NullableGetServerLog200Response) IsSet() bool { return v.isSet } func (v *NullableGetServerLog200Response) Unset() { v.value = nil v.isSet = false } func NewNullableGetServerLog200Response(val *GetServerLog200Response) *NullableGetServerLog200Response { return &NullableGetServerLog200Response{value: val, isSet: true} } func (v NullableGetServerLog200Response) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } func (v *NullableGetServerLog200Response) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) }