/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/microsoftgraph/msgraph-sdk-go/models/education_root.go
337 строк
12 KB
Justin Pierce
Add compat_otp package with openshift-tests-private (OTP) util implementations
11 авг 2025, 18:00
11 авг 2025, 18:00
80ac5c1
Код
Авторство
О чём код?
// Code generated by Microsoft Kiota - DO NOT EDIT. // Changes may cause incorrect behavior and will be lost if the code is regenerated. package models import ( i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization" ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e "github.com/microsoft/kiota-abstractions-go/store" ) type EducationRoot struct { // Stores model information. backingStore ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore } // NewEducationRoot instantiates a new EducationRoot and sets the default values. func NewEducationRoot()(*EducationRoot) { m := &EducationRoot{ } m.backingStore = ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStoreFactoryInstance(); m.SetAdditionalData(make(map[string]any)) return m } // CreateEducationRootFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value // returns a Parsable when successful func CreateEducationRootFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) { return NewEducationRoot(), nil } // GetAdditionalData gets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. // returns a map[string]any when successful func (m *EducationRoot) GetAdditionalData()(map[string]any) { val , err := m.backingStore.Get("additionalData") if err != nil { panic(err) } if val == nil { var value = make(map[string]any); m.SetAdditionalData(value); } return val.(map[string]any) } // GetBackingStore gets the BackingStore property value. Stores model information. // returns a BackingStore when successful func (m *EducationRoot) GetBackingStore()(ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore) { return m.backingStore } // GetClasses gets the classes property value. The classes property // returns a []EducationClassable when successful func (m *EducationRoot) GetClasses()([]EducationClassable) { val, err := m.GetBackingStore().Get("classes") if err != nil { panic(err) } if val != nil { return val.([]EducationClassable) } return nil } // GetFieldDeserializers the deserialization information for the current model // returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful func (m *EducationRoot) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) { res := make(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) res["classes"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateEducationClassFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]EducationClassable, len(val)) for i, v := range val { if v != nil { res[i] = v.(EducationClassable) } } m.SetClasses(res) } return nil } res["me"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetObjectValue(CreateEducationUserFromDiscriminatorValue) if err != nil { return err } if val != nil { m.SetMe(val.(EducationUserable)) } return nil } res["@odata.type"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetOdataType(val) } return nil } res["reports"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetObjectValue(CreateReportsRootFromDiscriminatorValue) if err != nil { return err } if val != nil { m.SetReports(val.(ReportsRootable)) } return nil } res["schools"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateEducationSchoolFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]EducationSchoolable, len(val)) for i, v := range val { if v != nil { res[i] = v.(EducationSchoolable) } } m.SetSchools(res) } return nil } res["users"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateEducationUserFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]EducationUserable, len(val)) for i, v := range val { if v != nil { res[i] = v.(EducationUserable) } } m.SetUsers(res) } return nil } return res } // GetMe gets the me property value. The me property // returns a EducationUserable when successful func (m *EducationRoot) GetMe()(EducationUserable) { val, err := m.GetBackingStore().Get("me") if err != nil { panic(err) } if val != nil { return val.(EducationUserable) } return nil } // GetOdataType gets the @odata.type property value. The OdataType property // returns a *string when successful func (m *EducationRoot) GetOdataType()(*string) { val, err := m.GetBackingStore().Get("odataType") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetReports gets the reports property value. The reports property // returns a ReportsRootable when successful func (m *EducationRoot) GetReports()(ReportsRootable) { val, err := m.GetBackingStore().Get("reports") if err != nil { panic(err) } if val != nil { return val.(ReportsRootable) } return nil } // GetSchools gets the schools property value. The schools property // returns a []EducationSchoolable when successful func (m *EducationRoot) GetSchools()([]EducationSchoolable) { val, err := m.GetBackingStore().Get("schools") if err != nil { panic(err) } if val != nil { return val.([]EducationSchoolable) } return nil } // GetUsers gets the users property value. The users property // returns a []EducationUserable when successful func (m *EducationRoot) GetUsers()([]EducationUserable) { val, err := m.GetBackingStore().Get("users") if err != nil { panic(err) } if val != nil { return val.([]EducationUserable) } return nil } // Serialize serializes information the current object func (m *EducationRoot) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) { if m.GetClasses() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetClasses())) for i, v := range m.GetClasses() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err := writer.WriteCollectionOfObjectValues("classes", cast) if err != nil { return err } } { err := writer.WriteObjectValue("me", m.GetMe()) if err != nil { return err } } { err := writer.WriteStringValue("@odata.type", m.GetOdataType()) if err != nil { return err } } { err := writer.WriteObjectValue("reports", m.GetReports()) if err != nil { return err } } if m.GetSchools() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetSchools())) for i, v := range m.GetSchools() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err := writer.WriteCollectionOfObjectValues("schools", cast) if err != nil { return err } } if m.GetUsers() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetUsers())) for i, v := range m.GetUsers() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err := writer.WriteCollectionOfObjectValues("users", cast) if err != nil { return err } } { err := writer.WriteAdditionalData(m.GetAdditionalData()) if err != nil { return err } } return nil } // SetAdditionalData sets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. func (m *EducationRoot) SetAdditionalData(value map[string]any)() { err := m.GetBackingStore().Set("additionalData", value) if err != nil { panic(err) } } // SetBackingStore sets the BackingStore property value. Stores model information. func (m *EducationRoot) SetBackingStore(value ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore)() { m.backingStore = value } // SetClasses sets the classes property value. The classes property func (m *EducationRoot) SetClasses(value []EducationClassable)() { err := m.GetBackingStore().Set("classes", value) if err != nil { panic(err) } } // SetMe sets the me property value. The me property func (m *EducationRoot) SetMe(value EducationUserable)() { err := m.GetBackingStore().Set("me", value) if err != nil { panic(err) } } // SetOdataType sets the @odata.type property value. The OdataType property func (m *EducationRoot) SetOdataType(value *string)() { err := m.GetBackingStore().Set("odataType", value) if err != nil { panic(err) } } // SetReports sets the reports property value. The reports property func (m *EducationRoot) SetReports(value ReportsRootable)() { err := m.GetBackingStore().Set("reports", value) if err != nil { panic(err) } } // SetSchools sets the schools property value. The schools property func (m *EducationRoot) SetSchools(value []EducationSchoolable)() { err := m.GetBackingStore().Set("schools", value) if err != nil { panic(err) } } // SetUsers sets the users property value. The users property func (m *EducationRoot) SetUsers(value []EducationUserable)() { err := m.GetBackingStore().Set("users", value) if err != nil { panic(err) } } type EducationRootable interface { i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackedModel i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable GetBackingStore()(ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore) GetClasses()([]EducationClassable) GetMe()(EducationUserable) GetOdataType()(*string) GetReports()(ReportsRootable) GetSchools()([]EducationSchoolable) GetUsers()([]EducationUserable) SetBackingStore(value ie8677ce2c7e1b4c22e9c3827ecd078d41185424dd9eeb92b7d971ed2d49a392e.BackingStore)() SetClasses(value []EducationClassable)() SetMe(value EducationUserable)() SetOdataType(value *string)() SetReports(value ReportsRootable)() SetSchools(value []EducationSchoolable)() SetUsers(value []EducationUserable)() }