/* Intelligent DNS API No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) API version: 1.0.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. package idns import ( "encoding/json" ) // checks if the GetZoneResponse type satisfies the MappedNullable interface at compile time var _ MappedNullable = &GetZoneResponse{} // GetZoneResponse Object returned by get zone type GetZoneResponse struct { // The schema version SchemaVersion *int32 `json:"schema_version,omitempty"` Results *Zone `json:"results,omitempty"` } // NewGetZoneResponse instantiates a new GetZoneResponse 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 NewGetZoneResponse() *GetZoneResponse { this := GetZoneResponse{} return &this } // NewGetZoneResponseWithDefaults instantiates a new GetZoneResponse 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 NewGetZoneResponseWithDefaults() *GetZoneResponse { this := GetZoneResponse{} return &this } // GetSchemaVersion returns the SchemaVersion field value if set, zero value otherwise. func (o *GetZoneResponse) GetSchemaVersion() int32 { if o == nil || IsNil(o.SchemaVersion) { var ret int32 return ret } return *o.SchemaVersion } // GetSchemaVersionOk returns a tuple with the SchemaVersion field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *GetZoneResponse) GetSchemaVersionOk() (*int32, bool) { if o == nil || IsNil(o.SchemaVersion) { return nil, false } return o.SchemaVersion, true } // HasSchemaVersion returns a boolean if a field has been set. func (o *GetZoneResponse) HasSchemaVersion() bool { if o != nil && !IsNil(o.SchemaVersion) { return true } return false } // SetSchemaVersion gets a reference to the given int32 and assigns it to the SchemaVersion field. func (o *GetZoneResponse) SetSchemaVersion(v int32) { o.SchemaVersion = &v } // GetResults returns the Results field value if set, zero value otherwise. func (o *GetZoneResponse) GetResults() Zone { if o == nil || IsNil(o.Results) { var ret Zone return ret } return *o.Results } // GetResultsOk returns a tuple with the Results field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *GetZoneResponse) GetResultsOk() (*Zone, bool) { if o == nil || IsNil(o.Results) { return nil, false } return o.Results, true } // HasResults returns a boolean if a field has been set. func (o *GetZoneResponse) HasResults() bool { if o != nil && !IsNil(o.Results) { return true } return false } // SetResults gets a reference to the given Zone and assigns it to the Results field. func (o *GetZoneResponse) SetResults(v Zone) { o.Results = &v } func (o GetZoneResponse) MarshalJSON() ([]byte, error) { toSerialize,err := o.ToMap() if err != nil { return []byte{}, err } return json.Marshal(toSerialize) } func (o GetZoneResponse) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} if !IsNil(o.SchemaVersion) { toSerialize["schema_version"] = o.SchemaVersion } if !IsNil(o.Results) { toSerialize["results"] = o.Results } return toSerialize, nil } type NullableGetZoneResponse struct { value *GetZoneResponse isSet bool } func (v NullableGetZoneResponse) Get() *GetZoneResponse { return v.value } func (v *NullableGetZoneResponse) Set(val *GetZoneResponse) { v.value = val v.isSet = true } func (v NullableGetZoneResponse) IsSet() bool { return v.isSet } func (v *NullableGetZoneResponse) Unset() { v.value = nil v.isSet = false } func NewNullableGetZoneResponse(val *GetZoneResponse) *NullableGetZoneResponse { return &NullableGetZoneResponse{value: val, isSet: true} } func (v NullableGetZoneResponse) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } func (v *NullableGetZoneResponse) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) }