-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcanvas_layout.go
125 lines (123 loc) · 4.84 KB
/
canvas_layout.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
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)()
}