mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
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
|
||
|
}
|