/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/microsoftgraph/msgraph-sdk-go/models/group_setting.go
165 строк
6 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" ) type GroupSetting struct { Entity } // NewGroupSetting instantiates a new GroupSetting and sets the default values. func NewGroupSetting()(*GroupSetting) { m := &GroupSetting{ Entity: *NewEntity(), } return m } // CreateGroupSettingFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value // returns a Parsable when successful func CreateGroupSettingFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) { return NewGroupSetting(), nil } // GetDisplayName gets the displayName property value. Display name of this group of settings, which comes from the associated template. // returns a *string when successful func (m *GroupSetting) GetDisplayName()(*string) { val, err := m.GetBackingStore().Get("displayName") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetFieldDeserializers the deserialization information for the current model // returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful func (m *GroupSetting) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) { res := m.Entity.GetFieldDeserializers() res["displayName"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetDisplayName(val) } return nil } res["templateId"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetStringValue() if err != nil { return err } if val != nil { m.SetTemplateId(val) } return nil } res["values"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateSettingValueFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]SettingValueable, len(val)) for i, v := range val { if v != nil { res[i] = v.(SettingValueable) } } m.SetValues(res) } return nil } return res } // GetTemplateId gets the templateId property value. Unique identifier for the tenant-level groupSettingTemplates object that's been customized for this group-level settings object. Read-only. // returns a *string when successful func (m *GroupSetting) GetTemplateId()(*string) { val, err := m.GetBackingStore().Get("templateId") if err != nil { panic(err) } if val != nil { return val.(*string) } return nil } // GetValues gets the values property value. Collection of name-value pairs corresponding to the name and defaultValue properties in the referenced groupSettingTemplates object. // returns a []SettingValueable when successful func (m *GroupSetting) GetValues()([]SettingValueable) { val, err := m.GetBackingStore().Get("values") if err != nil { panic(err) } if val != nil { return val.([]SettingValueable) } return nil } // Serialize serializes information the current object func (m *GroupSetting) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) { err := m.Entity.Serialize(writer) if err != nil { return err } { err = writer.WriteStringValue("displayName", m.GetDisplayName()) if err != nil { return err } } { err = writer.WriteStringValue("templateId", m.GetTemplateId()) if err != nil { return err } } if m.GetValues() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetValues())) for i, v := range m.GetValues() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("values", cast) if err != nil { return err } } return nil } // SetDisplayName sets the displayName property value. Display name of this group of settings, which comes from the associated template. func (m *GroupSetting) SetDisplayName(value *string)() { err := m.GetBackingStore().Set("displayName", value) if err != nil { panic(err) } } // SetTemplateId sets the templateId property value. Unique identifier for the tenant-level groupSettingTemplates object that's been customized for this group-level settings object. Read-only. func (m *GroupSetting) SetTemplateId(value *string)() { err := m.GetBackingStore().Set("templateId", value) if err != nil { panic(err) } } // SetValues sets the values property value. Collection of name-value pairs corresponding to the name and defaultValue properties in the referenced groupSettingTemplates object. func (m *GroupSetting) SetValues(value []SettingValueable)() { err := m.GetBackingStore().Set("values", value) if err != nil { panic(err) } } type GroupSettingable interface { Entityable i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable GetDisplayName()(*string) GetTemplateId()(*string) GetValues()([]SettingValueable) SetDisplayName(value *string)() SetTemplateId(value *string)() SetValues(value []SettingValueable)() }