mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
42 lines
1.5 KiB
Go
42 lines
1.5 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// CalendarSharingAction undocumented
|
|
type CalendarSharingAction int
|
|
|
|
const (
|
|
// CalendarSharingActionVAccept undocumented
|
|
CalendarSharingActionVAccept CalendarSharingAction = 0
|
|
// CalendarSharingActionVAcceptAndViewCalendar undocumented
|
|
CalendarSharingActionVAcceptAndViewCalendar CalendarSharingAction = 1
|
|
// CalendarSharingActionVViewCalendar undocumented
|
|
CalendarSharingActionVViewCalendar CalendarSharingAction = 2
|
|
// CalendarSharingActionVAddThisCalendar undocumented
|
|
CalendarSharingActionVAddThisCalendar CalendarSharingAction = 3
|
|
)
|
|
|
|
// CalendarSharingActionPAccept returns a pointer to CalendarSharingActionVAccept
|
|
func CalendarSharingActionPAccept() *CalendarSharingAction {
|
|
v := CalendarSharingActionVAccept
|
|
return &v
|
|
}
|
|
|
|
// CalendarSharingActionPAcceptAndViewCalendar returns a pointer to CalendarSharingActionVAcceptAndViewCalendar
|
|
func CalendarSharingActionPAcceptAndViewCalendar() *CalendarSharingAction {
|
|
v := CalendarSharingActionVAcceptAndViewCalendar
|
|
return &v
|
|
}
|
|
|
|
// CalendarSharingActionPViewCalendar returns a pointer to CalendarSharingActionVViewCalendar
|
|
func CalendarSharingActionPViewCalendar() *CalendarSharingAction {
|
|
v := CalendarSharingActionVViewCalendar
|
|
return &v
|
|
}
|
|
|
|
// CalendarSharingActionPAddThisCalendar returns a pointer to CalendarSharingActionVAddThisCalendar
|
|
func CalendarSharingActionPAddThisCalendar() *CalendarSharingAction {
|
|
v := CalendarSharingActionVAddThisCalendar
|
|
return &v
|
|
}
|