blob: 9a8a9da9675bd1d2e37f6c920ba4e2d388c2602a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// MediaStream undocumented
type MediaStream struct {
// Object is the base model of MediaStream
Object
// MediaType undocumented
MediaType *Modality `json:"mediaType,omitempty"`
// Label undocumented
Label *string `json:"label,omitempty"`
// SourceID undocumented
SourceID *string `json:"sourceId,omitempty"`
// Direction undocumented
Direction *MediaDirection `json:"direction,omitempty"`
// ServerMuted undocumented
ServerMuted *bool `json:"serverMuted,omitempty"`
}
|