/* 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 GetZonesResponse type satisfies the MappedNullable interface at compile time var _ MappedNullable = &GetZonesResponse{} // GetZonesResponse Object returned by get zones type GetZonesResponse struct { // The schema version SchemaVersion *int32 `json:"schema_version,omitempty"` // Number of records Count *int32 `json:"count,omitempty"` // The total pages TotalPages *int32 `json:"total_pages,omitempty"` Links *GetZonesResponseLinks `json:"links,omitempty"` // Hosted zones collection Results []Zone `json:"results,omitempty"` } // NewGetZonesResponse instantiates a new GetZonesResponse 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 NewGetZonesResponse() *GetZonesResponse { this := GetZonesResponse{} return &this } // NewGetZonesResponseWithDefaults instantiates a new GetZonesResponse 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 NewGetZonesResponseWithDefaults() *GetZonesResponse { this := GetZonesResponse{} return &this } // GetSchemaVersion returns the SchemaVersion field value if set, zero value otherwise. func (o *GetZonesResponse) 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 *GetZonesResponse) 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 *GetZonesResponse) 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 *GetZonesResponse) SetSchemaVersion(v int32) { o.SchemaVersion = &v } // GetCount returns the Count field value if set, zero value otherwise. func (o *GetZonesResponse) GetCount() int32 { if o == nil || IsNil(o.Count) { var ret int32 return ret } return *o.Count } // GetCountOk returns a tuple with the Count field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *GetZonesResponse) GetCountOk() (*int32, bool) { if o == nil || IsNil(o.Count) { return nil, false } return o.Count, true } // HasCount returns a boolean if a field has been set. func (o *GetZonesResponse) HasCount() bool { if o != nil && !IsNil(o.Count) { return true } return false } // SetCount gets a reference to the given int32 and assigns it to the Count field. func (o *GetZonesResponse) SetCount(v int32) { o.Count = &v } // GetTotalPages returns the TotalPages field value if set, zero value otherwise. func (o *GetZonesResponse) GetTotalPages() int32 { if o == nil || IsNil(o.TotalPages) { var ret int32 return ret } return *o.TotalPages } // GetTotalPagesOk returns a tuple with the TotalPages field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *GetZonesResponse) GetTotalPagesOk() (*int32, bool) { if o == nil || IsNil(o.TotalPages) { return nil, false } return o.TotalPages, true } // HasTotalPages returns a boolean if a field has been set. func (o *GetZonesResponse) HasTotalPages() bool { if o != nil && !IsNil(o.TotalPages) { return true } return false } // SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field. func (o *GetZonesResponse) SetTotalPages(v int32) { o.TotalPages = &v } // GetLinks returns the Links field value if set, zero value otherwise. func (o *GetZonesResponse) GetLinks() GetZonesResponseLinks { if o == nil || IsNil(o.Links) { var ret GetZonesResponseLinks return ret } return *o.Links } // GetLinksOk returns a tuple with the Links field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *GetZonesResponse) GetLinksOk() (*GetZonesResponseLinks, bool) { if o == nil || IsNil(o.Links) { return nil, false } return o.Links, true } // HasLinks returns a boolean if a field has been set. func (o *GetZonesResponse) HasLinks() bool { if o != nil && !IsNil(o.Links) { return true } return false } // SetLinks gets a reference to the given GetZonesResponseLinks and assigns it to the Links field. func (o *GetZonesResponse) SetLinks(v GetZonesResponseLinks) { o.Links = &v } // GetResults returns the Results field value if set, zero value otherwise. func (o *GetZonesResponse) 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 *GetZonesResponse) 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 *GetZonesResponse) 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 *GetZonesResponse) SetResults(v []Zone) { o.Results = v } func (o GetZonesResponse) MarshalJSON() ([]byte, error) { toSerialize,err := o.ToMap() if err != nil { return []byte{}, err } return json.Marshal(toSerialize) } func (o GetZonesResponse) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} if !IsNil(o.SchemaVersion) { toSerialize["schema_version"] = o.SchemaVersion } if !IsNil(o.Count) { toSerialize["count"] = o.Count } if !IsNil(o.TotalPages) { toSerialize["total_pages"] = o.TotalPages } if !IsNil(o.Links) { toSerialize["links"] = o.Links } if !IsNil(o.Results) { toSerialize["results"] = o.Results } return toSerialize, nil } type NullableGetZonesResponse struct { value *GetZonesResponse isSet bool } func (v NullableGetZonesResponse) Get() *GetZonesResponse { return v.value } func (v *NullableGetZonesResponse) Set(val *GetZonesResponse) { v.value = val v.isSet = true } func (v NullableGetZonesResponse) IsSet() bool { return v.isSet } func (v *NullableGetZonesResponse) Unset() { v.value = nil v.isSet = false } func NewNullableGetZonesResponse(val *GetZonesResponse) *NullableGetZonesResponse { return &NullableGetZonesResponse{value: val, isSet: true} } func (v NullableGetZonesResponse) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } func (v *NullableGetZonesResponse) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) }