-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathaudio_routing_group.go
163 lines (161 loc) · 5.47 KB
/
audio_routing_group.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package models
import (
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91 "github.com/microsoft/kiota-abstractions-go/serialization"
)
type AudioRoutingGroup struct {
Entity
}
// NewAudioRoutingGroup instantiates a new AudioRoutingGroup and sets the default values.
func NewAudioRoutingGroup()(*AudioRoutingGroup) {
m := &AudioRoutingGroup{
Entity: *NewEntity(),
}
return m
}
// CreateAudioRoutingGroupFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
// returns a Parsable when successful
func CreateAudioRoutingGroupFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewAudioRoutingGroup(), nil
}
// GetFieldDeserializers the deserialization information for the current model
// returns a map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error) when successful
func (m *AudioRoutingGroup) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := m.Entity.GetFieldDeserializers()
res["receivers"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfPrimitiveValues("string")
if err != nil {
return err
}
if val != nil {
res := make([]string, len(val))
for i, v := range val {
if v != nil {
res[i] = *(v.(*string))
}
}
m.SetReceivers(res)
}
return nil
}
res["routingMode"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetEnumValue(ParseRoutingMode)
if err != nil {
return err
}
if val != nil {
m.SetRoutingMode(val.(*RoutingMode))
}
return nil
}
res["sources"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetCollectionOfPrimitiveValues("string")
if err != nil {
return err
}
if val != nil {
res := make([]string, len(val))
for i, v := range val {
if v != nil {
res[i] = *(v.(*string))
}
}
m.SetSources(res)
}
return nil
}
return res
}
// GetReceivers gets the receivers property value. List of receiving participant ids.
// returns a []string when successful
func (m *AudioRoutingGroup) GetReceivers()([]string) {
val, err := m.GetBackingStore().Get("receivers")
if err != nil {
panic(err)
}
if val != nil {
return val.([]string)
}
return nil
}
// GetRoutingMode gets the routingMode property value. The routingMode property
// returns a *RoutingMode when successful
func (m *AudioRoutingGroup) GetRoutingMode()(*RoutingMode) {
val, err := m.GetBackingStore().Get("routingMode")
if err != nil {
panic(err)
}
if val != nil {
return val.(*RoutingMode)
}
return nil
}
// GetSources gets the sources property value. List of source participant ids.
// returns a []string when successful
func (m *AudioRoutingGroup) GetSources()([]string) {
val, err := m.GetBackingStore().Get("sources")
if err != nil {
panic(err)
}
if val != nil {
return val.([]string)
}
return nil
}
// Serialize serializes information the current object
func (m *AudioRoutingGroup) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
err := m.Entity.Serialize(writer)
if err != nil {
return err
}
if m.GetReceivers() != nil {
err = writer.WriteCollectionOfStringValues("receivers", m.GetReceivers())
if err != nil {
return err
}
}
if m.GetRoutingMode() != nil {
cast := (*m.GetRoutingMode()).String()
err = writer.WriteStringValue("routingMode", &cast)
if err != nil {
return err
}
}
if m.GetSources() != nil {
err = writer.WriteCollectionOfStringValues("sources", m.GetSources())
if err != nil {
return err
}
}
return nil
}
// SetReceivers sets the receivers property value. List of receiving participant ids.
func (m *AudioRoutingGroup) SetReceivers(value []string)() {
err := m.GetBackingStore().Set("receivers", value)
if err != nil {
panic(err)
}
}
// SetRoutingMode sets the routingMode property value. The routingMode property
func (m *AudioRoutingGroup) SetRoutingMode(value *RoutingMode)() {
err := m.GetBackingStore().Set("routingMode", value)
if err != nil {
panic(err)
}
}
// SetSources sets the sources property value. List of source participant ids.
func (m *AudioRoutingGroup) SetSources(value []string)() {
err := m.GetBackingStore().Set("sources", value)
if err != nil {
panic(err)
}
}
type AudioRoutingGroupable interface {
Entityable
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetReceivers()([]string)
GetRoutingMode()(*RoutingMode)
GetSources()([]string)
SetReceivers(value []string)()
SetRoutingMode(value *RoutingMode)()
SetSources(value []string)()
}