diff options
author | Qais Patankar <qaisjp@gmail.com> | 2020-03-15 22:43:46 +0000 |
---|---|---|
committer | Wim <wim@42.be> | 2020-03-22 00:02:48 +0100 |
commit | 76e5fe5a87d7e60919075f96eee599f3c6255a9f (patch) | |
tree | af3181ad6aadaea02069473a3718a827be888426 /vendor/github.com/matterbridge/msgraph.go/beta/EasServicesEnum.go | |
parent | 802c80f40c709ba4967de317e40a8d6abe57f6be (diff) | |
download | matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.gz matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.tar.bz2 matterbridge-msglm-76e5fe5a87d7e60919075f96eee599f3c6255a9f.zip |
Update vendor yaegashi/msgraph.go to v0.1.2 (2)
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/EasServicesEnum.go')
-rw-r--r-- | vendor/github.com/matterbridge/msgraph.go/beta/EasServicesEnum.go | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/EasServicesEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/EasServicesEnum.go deleted file mode 100644 index adb5b31f..00000000 --- a/vendor/github.com/matterbridge/msgraph.go/beta/EasServicesEnum.go +++ /dev/null @@ -1,57 +0,0 @@ -// 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 -} |