/* answer answer api API version: v0.0.1 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. package openapi import ( "encoding/json" ) // checks if the SchemaGetRoleResp type satisfies the MappedNullable interface at compile time var _ MappedNullable = &SchemaGetRoleResp{} // SchemaGetRoleResp struct for SchemaGetRoleResp type SchemaGetRoleResp struct { Description *string `json:"description,omitempty"` Id *int32 `json:"id,omitempty"` Name *string `json:"name,omitempty"` } // NewSchemaGetRoleResp instantiates a new SchemaGetRoleResp 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 NewSchemaGetRoleResp() *SchemaGetRoleResp { this := SchemaGetRoleResp{} return &this } // NewSchemaGetRoleRespWithDefaults instantiates a new SchemaGetRoleResp 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 NewSchemaGetRoleRespWithDefaults() *SchemaGetRoleResp { this := SchemaGetRoleResp{} return &this } // GetDescription returns the Description field value if set, zero value otherwise. func (o *SchemaGetRoleResp) GetDescription() string { if o == nil || IsNil(o.Description) { var ret string return ret } return *o.Description } // GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *SchemaGetRoleResp) GetDescriptionOk() (*string, bool) { if o == nil || IsNil(o.Description) { return nil, false } return o.Description, true } // HasDescription returns a boolean if a field has been set. func (o *SchemaGetRoleResp) HasDescription() bool { if o != nil && !IsNil(o.Description) { return true } return false } // SetDescription gets a reference to the given string and assigns it to the Description field. func (o *SchemaGetRoleResp) SetDescription(v string) { o.Description = &v } // GetId returns the Id field value if set, zero value otherwise. func (o *SchemaGetRoleResp) GetId() int32 { if o == nil || IsNil(o.Id) { var ret int32 return ret } return *o.Id } // GetIdOk returns a tuple with the Id field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *SchemaGetRoleResp) GetIdOk() (*int32, bool) { if o == nil || IsNil(o.Id) { return nil, false } return o.Id, true } // HasId returns a boolean if a field has been set. func (o *SchemaGetRoleResp) HasId() bool { if o != nil && !IsNil(o.Id) { return true } return false } // SetId gets a reference to the given int32 and assigns it to the Id field. func (o *SchemaGetRoleResp) SetId(v int32) { o.Id = &v } // GetName returns the Name field value if set, zero value otherwise. func (o *SchemaGetRoleResp) GetName() string { if o == nil || IsNil(o.Name) { var ret string return ret } return *o.Name } // GetNameOk returns a tuple with the Name field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *SchemaGetRoleResp) GetNameOk() (*string, bool) { if o == nil || IsNil(o.Name) { return nil, false } return o.Name, true } // HasName returns a boolean if a field has been set. func (o *SchemaGetRoleResp) HasName() bool { if o != nil && !IsNil(o.Name) { return true } return false } // SetName gets a reference to the given string and assigns it to the Name field. func (o *SchemaGetRoleResp) SetName(v string) { o.Name = &v } func (o SchemaGetRoleResp) MarshalJSON() ([]byte, error) { toSerialize,err := o.ToMap() if err != nil { return []byte{}, err } return json.Marshal(toSerialize) } func (o SchemaGetRoleResp) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} if !IsNil(o.Description) { toSerialize["description"] = o.Description } if !IsNil(o.Id) { toSerialize["id"] = o.Id } if !IsNil(o.Name) { toSerialize["name"] = o.Name } return toSerialize, nil } type NullableSchemaGetRoleResp struct { value *SchemaGetRoleResp isSet bool } func (v NullableSchemaGetRoleResp) Get() *SchemaGetRoleResp { return v.value } func (v *NullableSchemaGetRoleResp) Set(val *SchemaGetRoleResp) { v.value = val v.isSet = true } func (v NullableSchemaGetRoleResp) IsSet() bool { return v.isSet } func (v *NullableSchemaGetRoleResp) Unset() { v.value = nil v.isSet = false } func NewNullableSchemaGetRoleResp(val *SchemaGetRoleResp) *NullableSchemaGetRoleResp { return &NullableSchemaGetRoleResp{value: val, isSet: true} } func (v NullableSchemaGetRoleResp) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } func (v *NullableSchemaGetRoleResp) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) }