Files
portal/openapi/model_user_response.go
2026-06-22 11:38:29 +02:00

273 lines
6.3 KiB
Go

/*
FastAPI
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
API version: 0.1.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package openapi
import (
"encoding/json"
"bytes"
"fmt"
)
// checks if the UserResponse type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &UserResponse{}
// UserResponse struct for UserResponse
type UserResponse struct {
Name string `json:"name"`
Email NullableString `json:"email,omitempty"`
IsAdmin *bool `json:"is_admin,omitempty"`
Id int32 `json:"id"`
}
type _UserResponse UserResponse
// NewUserResponse instantiates a new UserResponse 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 NewUserResponse(name string, id int32) *UserResponse {
this := UserResponse{}
this.Name = name
var isAdmin bool = false
this.IsAdmin = &isAdmin
this.Id = id
return &this
}
// NewUserResponseWithDefaults instantiates a new UserResponse 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 NewUserResponseWithDefaults() *UserResponse {
this := UserResponse{}
var isAdmin bool = false
this.IsAdmin = &isAdmin
return &this
}
// GetName returns the Name field value
func (o *UserResponse) GetName() string {
if o == nil {
var ret string
return ret
}
return o.Name
}
// GetNameOk returns a tuple with the Name field value
// and a boolean to check if the value has been set.
func (o *UserResponse) GetNameOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Name, true
}
// SetName sets field value
func (o *UserResponse) SetName(v string) {
o.Name = v
}
// GetEmail returns the Email field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *UserResponse) GetEmail() string {
if o == nil || IsNil(o.Email.Get()) {
var ret string
return ret
}
return *o.Email.Get()
}
// GetEmailOk returns a tuple with the Email field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *UserResponse) GetEmailOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.Email.Get(), o.Email.IsSet()
}
// HasEmail returns a boolean if a field has been set.
func (o *UserResponse) HasEmail() bool {
if o != nil && o.Email.IsSet() {
return true
}
return false
}
// SetEmail gets a reference to the given NullableString and assigns it to the Email field.
func (o *UserResponse) SetEmail(v string) {
o.Email.Set(&v)
}
// SetEmailNil sets the value for Email to be an explicit nil
func (o *UserResponse) SetEmailNil() {
o.Email.Set(nil)
}
// UnsetEmail ensures that no value is present for Email, not even an explicit nil
func (o *UserResponse) UnsetEmail() {
o.Email.Unset()
}
// GetIsAdmin returns the IsAdmin field value if set, zero value otherwise.
func (o *UserResponse) GetIsAdmin() bool {
if o == nil || IsNil(o.IsAdmin) {
var ret bool
return ret
}
return *o.IsAdmin
}
// GetIsAdminOk returns a tuple with the IsAdmin field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *UserResponse) GetIsAdminOk() (*bool, bool) {
if o == nil || IsNil(o.IsAdmin) {
return nil, false
}
return o.IsAdmin, true
}
// HasIsAdmin returns a boolean if a field has been set.
func (o *UserResponse) HasIsAdmin() bool {
if o != nil && !IsNil(o.IsAdmin) {
return true
}
return false
}
// SetIsAdmin gets a reference to the given bool and assigns it to the IsAdmin field.
func (o *UserResponse) SetIsAdmin(v bool) {
o.IsAdmin = &v
}
// GetId returns the Id field value
func (o *UserResponse) GetId() int32 {
if o == nil {
var ret int32
return ret
}
return o.Id
}
// GetIdOk returns a tuple with the Id field value
// and a boolean to check if the value has been set.
func (o *UserResponse) GetIdOk() (*int32, bool) {
if o == nil {
return nil, false
}
return &o.Id, true
}
// SetId sets field value
func (o *UserResponse) SetId(v int32) {
o.Id = v
}
func (o UserResponse) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o UserResponse) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["name"] = o.Name
if o.Email.IsSet() {
toSerialize["email"] = o.Email.Get()
}
if !IsNil(o.IsAdmin) {
toSerialize["is_admin"] = o.IsAdmin
}
toSerialize["id"] = o.Id
return toSerialize, nil
}
func (o *UserResponse) 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{
"name",
"id",
}
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)
}
}
varUserResponse := _UserResponse{}
decoder := json.NewDecoder(bytes.NewReader(data))
decoder.DisallowUnknownFields()
err = decoder.Decode(&varUserResponse)
if err != nil {
return err
}
*o = UserResponse(varUserResponse)
return err
}
type NullableUserResponse struct {
value *UserResponse
isSet bool
}
func (v NullableUserResponse) Get() *UserResponse {
return v.value
}
func (v *NullableUserResponse) Set(val *UserResponse) {
v.value = val
v.isSet = true
}
func (v NullableUserResponse) IsSet() bool {
return v.isSet
}
func (v *NullableUserResponse) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableUserResponse(val *UserResponse) *NullableUserResponse {
return &NullableUserResponse{value: val, isSet: true}
}
func (v NullableUserResponse) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableUserResponse) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}