diff options
author | Wim <wim@42.be> | 2020-03-08 17:08:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-08 17:08:18 +0100 |
commit | 9785edd26366be8eb11c2435f50f90a5c8eea7fc (patch) | |
tree | e8e236b5b273e7535c607507cc059f3b957068a1 /vendor/github.com/matterbridge/msgraph.go/beta/RegistrationAuthMethodEnum.go | |
parent | 2a0bc11b684f63305258e338c5f1d0e91eb24414 (diff) | |
download | matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.tar.gz matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.tar.bz2 matterbridge-msglm-9785edd26366be8eb11c2435f50f90a5c8eea7fc.zip |
Remove replace directives and use own fork to make go get work again (#1028)
See https://github.com/golang/go/issues/30354
go get doesn't honor the go.mod replace options.
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, 89 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/RegistrationAuthMethodEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/RegistrationAuthMethodEnum.go new file mode 100644 index 00000000..18036f96 --- /dev/null +++ b/vendor/github.com/matterbridge/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 +} |