/* Libre Graph API Libre Graph is a free API for cloud collaboration inspired by the MS Graph API. API version: v1.0.4 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. package libregraph import ( "encoding/json" ) // EducationUserReference struct for EducationUserReference type EducationUserReference struct { OdataId *string `json:"@odata.id,omitempty"` } // NewEducationUserReference instantiates a new EducationUserReference 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 NewEducationUserReference() *EducationUserReference { this := EducationUserReference{} return &this } // NewEducationUserReferenceWithDefaults instantiates a new EducationUserReference 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 NewEducationUserReferenceWithDefaults() *EducationUserReference { this := EducationUserReference{} return &this } // GetOdataId returns the OdataId field value if set, zero value otherwise. func (o *EducationUserReference) GetOdataId() string { if o == nil || o.OdataId == nil { var ret string return ret } return *o.OdataId } // GetOdataIdOk returns a tuple with the OdataId field value if set, nil otherwise // and a boolean to check if the value has been set. func (o *EducationUserReference) GetOdataIdOk() (*string, bool) { if o == nil || o.OdataId == nil { return nil, false } return o.OdataId, true } // HasOdataId returns a boolean if a field has been set. func (o *EducationUserReference) HasOdataId() bool { if o != nil && o.OdataId != nil { return true } return false } // SetOdataId gets a reference to the given string and assigns it to the OdataId field. func (o *EducationUserReference) SetOdataId(v string) { o.OdataId = &v } func (o EducationUserReference) MarshalJSON() ([]byte, error) { toSerialize := map[string]interface{}{} if o.OdataId != nil { toSerialize["@odata.id"] = o.OdataId } return json.Marshal(toSerialize) } type NullableEducationUserReference struct { value *EducationUserReference isSet bool } func (v NullableEducationUserReference) Get() *EducationUserReference { return v.value } func (v *NullableEducationUserReference) Set(val *EducationUserReference) { v.value = val v.isSet = true } func (v NullableEducationUserReference) IsSet() bool { return v.isSet } func (v *NullableEducationUserReference) Unset() { v.value = nil v.isSet = false } func NewNullableEducationUserReference(val *EducationUserReference) *NullableEducationUserReference { return &NullableEducationUserReference{value: val, isSet: true} } func (v NullableEducationUserReference) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } func (v *NullableEducationUserReference) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) }