/* authentik Making authentication simple. API version: 2026.5.0-rc1 Contact: hello@goauthentik.io */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. package api import ( "encoding/json" "fmt" ) // checks if the ErrorDetail type satisfies the MappedNullable interface at compile time var _ MappedNullable = &ErrorDetail{} // ErrorDetail Serializer for rest_framework's error messages type ErrorDetail struct { String string `json:"string"` Code string `json:"code"` AdditionalProperties map[string]interface{} } type _ErrorDetail ErrorDetail // NewErrorDetail instantiates a new ErrorDetail 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 NewErrorDetail(string_ string, code string) *ErrorDetail { this := ErrorDetail{} this.String = string_ this.Code = code return &this } // NewErrorDetailWithDefaults instantiates a new ErrorDetail 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 NewErrorDetailWithDefaults() *ErrorDetail { this := ErrorDetail{} return &this } // GetString returns the String field value func (o *ErrorDetail) GetString() string { if o == nil { var ret string return ret } return o.String } // GetStringOk returns a tuple with the String field value // and a boolean to check if the value has been set. func (o *ErrorDetail) GetStringOk() (*string, bool) { if o == nil { return nil, false } return &o.String, true } // SetString sets field value func (o *ErrorDetail) SetString(v string) { o.String = v } // GetCode returns the Code field value func (o *ErrorDetail) GetCode() string { if o == nil { var ret string return ret } return o.Code } // GetCodeOk returns a tuple with the Code field value // and a boolean to check if the value has been set. func (o *ErrorDetail) GetCodeOk() (*string, bool) { if o == nil { return nil, false } return &o.Code, true } // SetCode sets field value func (o *ErrorDetail) SetCode(v string) { o.Code = v } func (o ErrorDetail) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err } return json.Marshal(toSerialize) } func (o ErrorDetail) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["string"] = o.String toSerialize["code"] = o.Code for key, value := range o.AdditionalProperties { toSerialize[key] = value } return toSerialize, nil } func (o *ErrorDetail) UnmarshalJSON(data []byte) (err error) { // This validates that all required properties are included in the JSON object // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ "string", "code", } allProperties := make(map[string]interface{}) err = json.Unmarshal(data, &allProperties) if err != nil { return err } for _, requiredProperty := range requiredProperties { if _, exists := allProperties[requiredProperty]; !exists { return fmt.Errorf("no value given for required property %v", requiredProperty) } } varErrorDetail := _ErrorDetail{} err = json.Unmarshal(data, &varErrorDetail) if err != nil { return err } *o = ErrorDetail(varErrorDetail) additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "string") delete(additionalProperties, "code") o.AdditionalProperties = additionalProperties } return err } type NullableErrorDetail struct { value *ErrorDetail isSet bool } func (v NullableErrorDetail) Get() *ErrorDetail { return v.value } func (v *NullableErrorDetail) Set(val *ErrorDetail) { v.value = val v.isSet = true } func (v NullableErrorDetail) IsSet() bool { return v.isSet } func (v *NullableErrorDetail) Unset() { v.value = nil v.isSet = false } func NewNullableErrorDetail(val *ErrorDetail) *NullableErrorDetail { return &NullableErrorDetail{value: val, isSet: true} } func (v NullableErrorDetail) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } func (v *NullableErrorDetail) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) }