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/RegistrationAuthMethodEnum.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/RegistrationAuthMethodEnum.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/RegistrationAuthMethodEnum.go | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RegistrationAuthMethodEnum.go b/vendor/github.com/yaegashi/msgraph.go/beta/RegistrationAuthMethodEnum.go new file mode 100644 index 00000000..18036f96 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/RegistrationAuthMethodEnum.go @@ -0,0 +1,89 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// RegistrationAuthMethod undocumented +type RegistrationAuthMethod int + +const ( + // RegistrationAuthMethodVEmail undocumented + RegistrationAuthMethodVEmail RegistrationAuthMethod = 0 + // RegistrationAuthMethodVMobilePhone undocumented + RegistrationAuthMethodVMobilePhone RegistrationAuthMethod = 1 + // RegistrationAuthMethodVOfficePhone undocumented + RegistrationAuthMethodVOfficePhone RegistrationAuthMethod = 2 + // RegistrationAuthMethodVSecurityQuestion undocumented + RegistrationAuthMethodVSecurityQuestion RegistrationAuthMethod = 3 + // RegistrationAuthMethodVAppNotification undocumented + RegistrationAuthMethodVAppNotification RegistrationAuthMethod = 4 + // RegistrationAuthMethodVAppCode undocumented + RegistrationAuthMethodVAppCode RegistrationAuthMethod = 5 + // RegistrationAuthMethodVAlternateMobilePhone undocumented + RegistrationAuthMethodVAlternateMobilePhone RegistrationAuthMethod = 6 + // RegistrationAuthMethodVFido undocumented + RegistrationAuthMethodVFido RegistrationAuthMethod = 7 + // RegistrationAuthMethodVAppPassword undocumented + RegistrationAuthMethodVAppPassword RegistrationAuthMethod = 8 + // RegistrationAuthMethodVUnknownFutureValue undocumented + RegistrationAuthMethodVUnknownFutureValue RegistrationAuthMethod = 9 +) + +// RegistrationAuthMethodPEmail returns a pointer to RegistrationAuthMethodVEmail +func RegistrationAuthMethodPEmail() *RegistrationAuthMethod { + v := RegistrationAuthMethodVEmail + return &v +} + +// RegistrationAuthMethodPMobilePhone returns a pointer to RegistrationAuthMethodVMobilePhone +func RegistrationAuthMethodPMobilePhone() *RegistrationAuthMethod { + v := RegistrationAuthMethodVMobilePhone + return &v +} + +// RegistrationAuthMethodPOfficePhone returns a pointer to RegistrationAuthMethodVOfficePhone +func RegistrationAuthMethodPOfficePhone() *RegistrationAuthMethod { + v := RegistrationAuthMethodVOfficePhone + return &v +} + +// RegistrationAuthMethodPSecurityQuestion returns a pointer to RegistrationAuthMethodVSecurityQuestion +func RegistrationAuthMethodPSecurityQuestion() *RegistrationAuthMethod { + v := RegistrationAuthMethodVSecurityQuestion + return &v +} + +// RegistrationAuthMethodPAppNotification returns a pointer to RegistrationAuthMethodVAppNotification +func RegistrationAuthMethodPAppNotification() *RegistrationAuthMethod { + v := RegistrationAuthMethodVAppNotification + return &v +} + +// RegistrationAuthMethodPAppCode returns a pointer to RegistrationAuthMethodVAppCode +func RegistrationAuthMethodPAppCode() *RegistrationAuthMethod { + v := RegistrationAuthMethodVAppCode + return &v +} + +// RegistrationAuthMethodPAlternateMobilePhone returns a pointer to RegistrationAuthMethodVAlternateMobilePhone +func RegistrationAuthMethodPAlternateMobilePhone() *RegistrationAuthMethod { + v := RegistrationAuthMethodVAlternateMobilePhone + return &v +} + +// RegistrationAuthMethodPFido returns a pointer to RegistrationAuthMethodVFido +func RegistrationAuthMethodPFido() *RegistrationAuthMethod { + v := RegistrationAuthMethodVFido + return &v +} + +// RegistrationAuthMethodPAppPassword returns a pointer to RegistrationAuthMethodVAppPassword +func RegistrationAuthMethodPAppPassword() *RegistrationAuthMethod { + v := RegistrationAuthMethodVAppPassword + return &v +} + +// RegistrationAuthMethodPUnknownFutureValue returns a pointer to RegistrationAuthMethodVUnknownFutureValue +func RegistrationAuthMethodPUnknownFutureValue() *RegistrationAuthMethod { + v := RegistrationAuthMethodVUnknownFutureValue + return &v +} |