diff options
author | Wim <wim@42.be> | 2019-12-26 23:12:28 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2020-03-01 22:19:33 +0100 |
commit | 795a8705c3fdc5bf55e83d382e7d3ff233896a0b (patch) | |
tree | 46ac43e487102de7ea21a823a7a7902ae9493f88 /vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentEnum.go | |
parent | 3af0dc3b3a5bfaffe37770c437427f1e99402405 (diff) | |
download | matterbridge-msglm-795a8705c3fdc5bf55e83d382e7d3ff233896a0b.tar.gz matterbridge-msglm-795a8705c3fdc5bf55e83d382e7d3ff233896a0b.tar.bz2 matterbridge-msglm-795a8705c3fdc5bf55e83d382e7d3ff233896a0b.zip |
Add initial Microsoft Teams support
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentEnum.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentEnum.go | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentEnum.go b/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentEnum.go new file mode 100644 index 00000000..27cc5e4b --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/MobileAppIntentEnum.go @@ -0,0 +1,65 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// MobileAppIntent undocumented +type MobileAppIntent int + +const ( + // MobileAppIntentVAvailable undocumented + MobileAppIntentVAvailable MobileAppIntent = 0 + // MobileAppIntentVNotAvailable undocumented + MobileAppIntentVNotAvailable MobileAppIntent = 1 + // MobileAppIntentVRequiredInstall undocumented + MobileAppIntentVRequiredInstall MobileAppIntent = 2 + // MobileAppIntentVRequiredUninstall undocumented + MobileAppIntentVRequiredUninstall MobileAppIntent = 3 + // MobileAppIntentVRequiredAndAvailableInstall undocumented + MobileAppIntentVRequiredAndAvailableInstall MobileAppIntent = 4 + // MobileAppIntentVAvailableInstallWithoutEnrollment undocumented + MobileAppIntentVAvailableInstallWithoutEnrollment MobileAppIntent = 5 + // MobileAppIntentVExclude undocumented + MobileAppIntentVExclude MobileAppIntent = 6 +) + +// MobileAppIntentPAvailable returns a pointer to MobileAppIntentVAvailable +func MobileAppIntentPAvailable() *MobileAppIntent { + v := MobileAppIntentVAvailable + return &v +} + +// MobileAppIntentPNotAvailable returns a pointer to MobileAppIntentVNotAvailable +func MobileAppIntentPNotAvailable() *MobileAppIntent { + v := MobileAppIntentVNotAvailable + return &v +} + +// MobileAppIntentPRequiredInstall returns a pointer to MobileAppIntentVRequiredInstall +func MobileAppIntentPRequiredInstall() *MobileAppIntent { + v := MobileAppIntentVRequiredInstall + return &v +} + +// MobileAppIntentPRequiredUninstall returns a pointer to MobileAppIntentVRequiredUninstall +func MobileAppIntentPRequiredUninstall() *MobileAppIntent { + v := MobileAppIntentVRequiredUninstall + return &v +} + +// MobileAppIntentPRequiredAndAvailableInstall returns a pointer to MobileAppIntentVRequiredAndAvailableInstall +func MobileAppIntentPRequiredAndAvailableInstall() *MobileAppIntent { + v := MobileAppIntentVRequiredAndAvailableInstall + return &v +} + +// MobileAppIntentPAvailableInstallWithoutEnrollment returns a pointer to MobileAppIntentVAvailableInstallWithoutEnrollment +func MobileAppIntentPAvailableInstallWithoutEnrollment() *MobileAppIntent { + v := MobileAppIntentVAvailableInstallWithoutEnrollment + return &v +} + +// MobileAppIntentPExclude returns a pointer to MobileAppIntentVExclude +func MobileAppIntentPExclude() *MobileAppIntent { + v := MobileAppIntentVExclude + return &v +} |