mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-24 19:52:03 -08:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
34 lines
1.5 KiB
Go
34 lines
1.5 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// WelcomeScreenMeetingInformation undocumented
|
|
type WelcomeScreenMeetingInformation int
|
|
|
|
const (
|
|
// WelcomeScreenMeetingInformationVUserDefined undocumented
|
|
WelcomeScreenMeetingInformationVUserDefined WelcomeScreenMeetingInformation = 0
|
|
// WelcomeScreenMeetingInformationVShowOrganizerAndTimeOnly undocumented
|
|
WelcomeScreenMeetingInformationVShowOrganizerAndTimeOnly WelcomeScreenMeetingInformation = 1
|
|
// WelcomeScreenMeetingInformationVShowOrganizerAndTimeAndSubject undocumented
|
|
WelcomeScreenMeetingInformationVShowOrganizerAndTimeAndSubject WelcomeScreenMeetingInformation = 2
|
|
)
|
|
|
|
// WelcomeScreenMeetingInformationPUserDefined returns a pointer to WelcomeScreenMeetingInformationVUserDefined
|
|
func WelcomeScreenMeetingInformationPUserDefined() *WelcomeScreenMeetingInformation {
|
|
v := WelcomeScreenMeetingInformationVUserDefined
|
|
return &v
|
|
}
|
|
|
|
// WelcomeScreenMeetingInformationPShowOrganizerAndTimeOnly returns a pointer to WelcomeScreenMeetingInformationVShowOrganizerAndTimeOnly
|
|
func WelcomeScreenMeetingInformationPShowOrganizerAndTimeOnly() *WelcomeScreenMeetingInformation {
|
|
v := WelcomeScreenMeetingInformationVShowOrganizerAndTimeOnly
|
|
return &v
|
|
}
|
|
|
|
// WelcomeScreenMeetingInformationPShowOrganizerAndTimeAndSubject returns a pointer to WelcomeScreenMeetingInformationVShowOrganizerAndTimeAndSubject
|
|
func WelcomeScreenMeetingInformationPShowOrganizerAndTimeAndSubject() *WelcomeScreenMeetingInformation {
|
|
v := WelcomeScreenMeetingInformationVShowOrganizerAndTimeAndSubject
|
|
return &v
|
|
}
|