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/RegistrationAuthMethodEnum.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/RegistrationAuthMethodEnum.go')
-rw-r--r-- | vendor/github.com/matterbridge/msgraph.go/beta/RegistrationAuthMethodEnum.go | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/RegistrationAuthMethodEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RegistrationAuthMethodEnum.go deleted file mode 100644 index 18036f96..00000000 --- a/vendor/github.com/matterbridge/msgraph.go/beta/RegistrationAuthMethodEnum.go +++ /dev/null @@ -1,89 +0,0 @@ -// 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 -} |