mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-28 13:42:01 -08:00
26 lines
842 B
Go
26 lines
842 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// MeetingCapabilities undocumented
|
||
|
type MeetingCapabilities int
|
||
|
|
||
|
const (
|
||
|
// MeetingCapabilitiesVQuestionAndAnswer undocumented
|
||
|
MeetingCapabilitiesVQuestionAndAnswer MeetingCapabilities = 0
|
||
|
// MeetingCapabilitiesVUnknownFutureValue undocumented
|
||
|
MeetingCapabilitiesVUnknownFutureValue MeetingCapabilities = 1
|
||
|
)
|
||
|
|
||
|
// MeetingCapabilitiesPQuestionAndAnswer returns a pointer to MeetingCapabilitiesVQuestionAndAnswer
|
||
|
func MeetingCapabilitiesPQuestionAndAnswer() *MeetingCapabilities {
|
||
|
v := MeetingCapabilitiesVQuestionAndAnswer
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// MeetingCapabilitiesPUnknownFutureValue returns a pointer to MeetingCapabilitiesVUnknownFutureValue
|
||
|
func MeetingCapabilitiesPUnknownFutureValue() *MeetingCapabilities {
|
||
|
v := MeetingCapabilitiesVUnknownFutureValue
|
||
|
return &v
|
||
|
}
|