/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vendor/github.com/microsoftgraph/msgraph-sdk-go/models/canvas_layout.go
128 строк
5 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 CanvasLayout struct { Entity } // NewCanvasLayout instantiates a new CanvasLayout and sets the default values. func NewCanvasLayout()(*CanvasLayout) { m := &CanvasLayout{ Entity: *NewEntity(), } return m } // CreateCanvasLayoutFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value // returns a Parsable when successful func CreateCanvasLayoutFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) { return NewCanvasLayout(), nil } // GetFieldDeserializers the deserialization information for the current model // returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful func (m *CanvasLayout) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) { res := m.Entity.GetFieldDeserializers() res["horizontalSections"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetCollectionOfObjectValues(CreateHorizontalSectionFromDiscriminatorValue) if err != nil { return err } if val != nil { res := make([]HorizontalSectionable, len(val)) for i, v := range val { if v != nil { res[i] = v.(HorizontalSectionable) } } m.SetHorizontalSections(res) } return nil } res["verticalSection"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error { val, err := n.GetObjectValue(CreateVerticalSectionFromDiscriminatorValue) if err != nil { return err } if val != nil { m.SetVerticalSection(val.(VerticalSectionable)) } return nil } return res } // GetHorizontalSections gets the horizontalSections property value. Collection of horizontal sections on the SharePoint page. // returns a []HorizontalSectionable when successful func (m *CanvasLayout) GetHorizontalSections()([]HorizontalSectionable) { val, err := m.GetBackingStore().Get("horizontalSections") if err != nil { panic(err) } if val != nil { return val.([]HorizontalSectionable) } return nil } // GetVerticalSection gets the verticalSection property value. Vertical section on the SharePoint page. // returns a VerticalSectionable when successful func (m *CanvasLayout) GetVerticalSection()(VerticalSectionable) { val, err := m.GetBackingStore().Get("verticalSection") if err != nil { panic(err) } if val != nil { return val.(VerticalSectionable) } return nil } // Serialize serializes information the current object func (m *CanvasLayout) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) { err := m.Entity.Serialize(writer) if err != nil { return err } if m.GetHorizontalSections() != nil { cast := make([]i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, len(m.GetHorizontalSections())) for i, v := range m.GetHorizontalSections() { if v != nil { cast[i] = v.(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable) } } err = writer.WriteCollectionOfObjectValues("horizontalSections", cast) if err != nil { return err } } { err = writer.WriteObjectValue("verticalSection", m.GetVerticalSection()) if err != nil { return err } } return nil } // SetHorizontalSections sets the horizontalSections property value. Collection of horizontal sections on the SharePoint page. func (m *CanvasLayout) SetHorizontalSections(value []HorizontalSectionable)() { err := m.GetBackingStore().Set("horizontalSections", value) if err != nil { panic(err) } } // SetVerticalSection sets the verticalSection property value. Vertical section on the SharePoint page. func (m *CanvasLayout) SetVerticalSection(value VerticalSectionable)() { err := m.GetBackingStore().Set("verticalSection", value) if err != nil { panic(err) } } type CanvasLayoutable interface { Entityable i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable GetHorizontalSections()([]HorizontalSectionable) GetVerticalSection()(VerticalSectionable) SetHorizontalSections(value []HorizontalSectionable)() SetVerticalSection(value VerticalSectionable)() }