From 795a8705c3fdc5bf55e83d382e7d3ff233896a0b Mon Sep 17 00:00:00 2001 From: Wim Date: Thu, 26 Dec 2019 23:12:28 +0100 Subject: Add initial Microsoft Teams support Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup --- .../yaegashi/msgraph.go/beta/EasServicesEnum.go | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 vendor/github.com/yaegashi/msgraph.go/beta/EasServicesEnum.go (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/EasServicesEnum.go') diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EasServicesEnum.go b/vendor/github.com/yaegashi/msgraph.go/beta/EasServicesEnum.go new file mode 100644 index 00000000..adb5b31f --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EasServicesEnum.go @@ -0,0 +1,57 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// EasServices undocumented +type EasServices int + +const ( + // EasServicesVNone undocumented + EasServicesVNone EasServices = 0 + // EasServicesVCalendars undocumented + EasServicesVCalendars EasServices = 1 + // EasServicesVContacts undocumented + EasServicesVContacts EasServices = 2 + // EasServicesVEmail undocumented + EasServicesVEmail EasServices = 4 + // EasServicesVNotes undocumented + EasServicesVNotes EasServices = 8 + // EasServicesVReminders undocumented + EasServicesVReminders EasServices = 16 +) + +// EasServicesPNone returns a pointer to EasServicesVNone +func EasServicesPNone() *EasServices { + v := EasServicesVNone + return &v +} + +// EasServicesPCalendars returns a pointer to EasServicesVCalendars +func EasServicesPCalendars() *EasServices { + v := EasServicesVCalendars + return &v +} + +// EasServicesPContacts returns a pointer to EasServicesVContacts +func EasServicesPContacts() *EasServices { + v := EasServicesVContacts + return &v +} + +// EasServicesPEmail returns a pointer to EasServicesVEmail +func EasServicesPEmail() *EasServices { + v := EasServicesVEmail + return &v +} + +// EasServicesPNotes returns a pointer to EasServicesVNotes +func EasServicesPNotes() *EasServices { + v := EasServicesVNotes + return &v +} + +// EasServicesPReminders returns a pointer to EasServicesVReminders +func EasServicesPReminders() *EasServices { + v := EasServicesVReminders + return &v +} -- cgit v1.2.3