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/yaegashi/msgraph.go/beta/EnumUsage.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/yaegashi/msgraph.go/beta/EnumUsage.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/EnumUsage.go | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsage.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsage.go new file mode 100644 index 00000000..54166ad6 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsage.go @@ -0,0 +1,70 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// UsageAuthMethod undocumented +type UsageAuthMethod string + +const ( + // UsageAuthMethodVEmail undocumented + UsageAuthMethodVEmail UsageAuthMethod = "email" + // UsageAuthMethodVMobileSMS undocumented + UsageAuthMethodVMobileSMS UsageAuthMethod = "mobileSMS" + // UsageAuthMethodVMobileCall undocumented + UsageAuthMethodVMobileCall UsageAuthMethod = "mobileCall" + // UsageAuthMethodVOfficePhone undocumented + UsageAuthMethodVOfficePhone UsageAuthMethod = "officePhone" + // UsageAuthMethodVSecurityQuestion undocumented + UsageAuthMethodVSecurityQuestion UsageAuthMethod = "securityQuestion" + // UsageAuthMethodVAppNotification undocumented + UsageAuthMethodVAppNotification UsageAuthMethod = "appNotification" + // UsageAuthMethodVAppCode undocumented + UsageAuthMethodVAppCode UsageAuthMethod = "appCode" + // UsageAuthMethodVAlternateMobileCall undocumented + UsageAuthMethodVAlternateMobileCall UsageAuthMethod = "alternateMobileCall" + // UsageAuthMethodVFido undocumented + UsageAuthMethodVFido UsageAuthMethod = "fido" + // UsageAuthMethodVAppPassword undocumented + UsageAuthMethodVAppPassword UsageAuthMethod = "appPassword" + // UsageAuthMethodVUnknownFutureValue undocumented + UsageAuthMethodVUnknownFutureValue UsageAuthMethod = "unknownFutureValue" +) + +var ( + // UsageAuthMethodPEmail is a pointer to UsageAuthMethodVEmail + UsageAuthMethodPEmail = &_UsageAuthMethodPEmail + // UsageAuthMethodPMobileSMS is a pointer to UsageAuthMethodVMobileSMS + UsageAuthMethodPMobileSMS = &_UsageAuthMethodPMobileSMS + // UsageAuthMethodPMobileCall is a pointer to UsageAuthMethodVMobileCall + UsageAuthMethodPMobileCall = &_UsageAuthMethodPMobileCall + // UsageAuthMethodPOfficePhone is a pointer to UsageAuthMethodVOfficePhone + UsageAuthMethodPOfficePhone = &_UsageAuthMethodPOfficePhone + // UsageAuthMethodPSecurityQuestion is a pointer to UsageAuthMethodVSecurityQuestion + UsageAuthMethodPSecurityQuestion = &_UsageAuthMethodPSecurityQuestion + // UsageAuthMethodPAppNotification is a pointer to UsageAuthMethodVAppNotification + UsageAuthMethodPAppNotification = &_UsageAuthMethodPAppNotification + // UsageAuthMethodPAppCode is a pointer to UsageAuthMethodVAppCode + UsageAuthMethodPAppCode = &_UsageAuthMethodPAppCode + // UsageAuthMethodPAlternateMobileCall is a pointer to UsageAuthMethodVAlternateMobileCall + UsageAuthMethodPAlternateMobileCall = &_UsageAuthMethodPAlternateMobileCall + // UsageAuthMethodPFido is a pointer to UsageAuthMethodVFido + UsageAuthMethodPFido = &_UsageAuthMethodPFido + // UsageAuthMethodPAppPassword is a pointer to UsageAuthMethodVAppPassword + UsageAuthMethodPAppPassword = &_UsageAuthMethodPAppPassword + // UsageAuthMethodPUnknownFutureValue is a pointer to UsageAuthMethodVUnknownFutureValue + UsageAuthMethodPUnknownFutureValue = &_UsageAuthMethodPUnknownFutureValue +) + +var ( + _UsageAuthMethodPEmail = UsageAuthMethodVEmail + _UsageAuthMethodPMobileSMS = UsageAuthMethodVMobileSMS + _UsageAuthMethodPMobileCall = UsageAuthMethodVMobileCall + _UsageAuthMethodPOfficePhone = UsageAuthMethodVOfficePhone + _UsageAuthMethodPSecurityQuestion = UsageAuthMethodVSecurityQuestion + _UsageAuthMethodPAppNotification = UsageAuthMethodVAppNotification + _UsageAuthMethodPAppCode = UsageAuthMethodVAppCode + _UsageAuthMethodPAlternateMobileCall = UsageAuthMethodVAlternateMobileCall + _UsageAuthMethodPFido = UsageAuthMethodVFido + _UsageAuthMethodPAppPassword = UsageAuthMethodVAppPassword + _UsageAuthMethodPUnknownFutureValue = UsageAuthMethodVUnknownFutureValue +) |