/* 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 ErrorReportingConfig type satisfies the MappedNullable interface at compile time var _ MappedNullable = &ErrorReportingConfig{} // ErrorReportingConfig Config for error reporting type ErrorReportingConfig struct { Enabled bool `json:"enabled"` SentryDsn string `json:"sentry_dsn"` Environment string `json:"environment"` SendPii bool `json:"send_pii"` TracesSampleRate float64 `json:"traces_sample_rate"` AdditionalProperties map[string]interface{} } type _ErrorReportingConfig ErrorReportingConfig // NewErrorReportingConfig instantiates a new ErrorReportingConfig 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 NewErrorReportingConfig(enabled bool, sentryDsn string, environment string, sendPii bool, tracesSampleRate float64) *ErrorReportingConfig { this := ErrorReportingConfig{} this.Enabled = enabled this.SentryDsn = sentryDsn this.Environment = environment this.SendPii = sendPii this.TracesSampleRate = tracesSampleRate return &this } // NewErrorReportingConfigWithDefaults instantiates a new ErrorReportingConfig 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 NewErrorReportingConfigWithDefaults() *ErrorReportingConfig { this := ErrorReportingConfig{} return &this } // GetEnabled returns the Enabled field value func (o *ErrorReportingConfig) GetEnabled() bool { if o == nil { var ret bool return ret } return o.Enabled } // GetEnabledOk returns a tuple with the Enabled field value // and a boolean to check if the value has been set. func (o *ErrorReportingConfig) GetEnabledOk() (*bool, bool) { if o == nil { return nil, false } return &o.Enabled, true } // SetEnabled sets field value func (o *ErrorReportingConfig) SetEnabled(v bool) { o.Enabled = v } // GetSentryDsn returns the SentryDsn field value func (o *ErrorReportingConfig) GetSentryDsn() string { if o == nil { var ret string return ret } return o.SentryDsn } // GetSentryDsnOk returns a tuple with the SentryDsn field value // and a boolean to check if the value has been set. func (o *ErrorReportingConfig) GetSentryDsnOk() (*string, bool) { if o == nil { return nil, false } return &o.SentryDsn, true } // SetSentryDsn sets field value func (o *ErrorReportingConfig) SetSentryDsn(v string) { o.SentryDsn = v } // GetEnvironment returns the Environment field value func (o *ErrorReportingConfig) GetEnvironment() string { if o == nil { var ret string return ret } return o.Environment } // GetEnvironmentOk returns a tuple with the Environment field value // and a boolean to check if the value has been set. func (o *ErrorReportingConfig) GetEnvironmentOk() (*string, bool) { if o == nil { return nil, false } return &o.Environment, true } // SetEnvironment sets field value func (o *ErrorReportingConfig) SetEnvironment(v string) { o.Environment = v } // GetSendPii returns the SendPii field value func (o *ErrorReportingConfig) GetSendPii() bool { if o == nil { var ret bool return ret } return o.SendPii } // GetSendPiiOk returns a tuple with the SendPii field value // and a boolean to check if the value has been set. func (o *ErrorReportingConfig) GetSendPiiOk() (*bool, bool) { if o == nil { return nil, false } return &o.SendPii, true } // SetSendPii sets field value func (o *ErrorReportingConfig) SetSendPii(v bool) { o.SendPii = v } // GetTracesSampleRate returns the TracesSampleRate field value func (o *ErrorReportingConfig) GetTracesSampleRate() float64 { if o == nil { var ret float64 return ret } return o.TracesSampleRate } // GetTracesSampleRateOk returns a tuple with the TracesSampleRate field value // and a boolean to check if the value has been set. func (o *ErrorReportingConfig) GetTracesSampleRateOk() (*float64, bool) { if o == nil { return nil, false } return &o.TracesSampleRate, true } // SetTracesSampleRate sets field value func (o *ErrorReportingConfig) SetTracesSampleRate(v float64) { o.TracesSampleRate = v } func (o ErrorReportingConfig) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err } return json.Marshal(toSerialize) } func (o ErrorReportingConfig) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["enabled"] = o.Enabled toSerialize["sentry_dsn"] = o.SentryDsn toSerialize["environment"] = o.Environment toSerialize["send_pii"] = o.SendPii toSerialize["traces_sample_rate"] = o.TracesSampleRate for key, value := range o.AdditionalProperties { toSerialize[key] = value } return toSerialize, nil } func (o *ErrorReportingConfig) 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{ "enabled", "sentry_dsn", "environment", "send_pii", "traces_sample_rate", } 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) } } varErrorReportingConfig := _ErrorReportingConfig{} err = json.Unmarshal(data, &varErrorReportingConfig) if err != nil { return err } *o = ErrorReportingConfig(varErrorReportingConfig) additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "enabled") delete(additionalProperties, "sentry_dsn") delete(additionalProperties, "environment") delete(additionalProperties, "send_pii") delete(additionalProperties, "traces_sample_rate") o.AdditionalProperties = additionalProperties } return err } type NullableErrorReportingConfig struct { value *ErrorReportingConfig isSet bool } func (v NullableErrorReportingConfig) Get() *ErrorReportingConfig { return v.value } func (v *NullableErrorReportingConfig) Set(val *ErrorReportingConfig) { v.value = val v.isSet = true } func (v NullableErrorReportingConfig) IsSet() bool { return v.isSet } func (v *NullableErrorReportingConfig) Unset() { v.value = nil v.isSet = false } func NewNullableErrorReportingConfig(val *ErrorReportingConfig) *NullableErrorReportingConfig { return &NullableErrorReportingConfig{value: val, isSet: true} } func (v NullableErrorReportingConfig) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } func (v *NullableErrorReportingConfig) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) }