blob: bae64b60625ddb5262021a23d05861e24624e899 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// AuthMethodsType undocumented
type AuthMethodsType string
const (
// AuthMethodsTypeVEmail undocumented
AuthMethodsTypeVEmail AuthMethodsType = "email"
// AuthMethodsTypeVMobileSMS undocumented
AuthMethodsTypeVMobileSMS AuthMethodsType = "mobileSMS"
// AuthMethodsTypeVMobilePhone undocumented
AuthMethodsTypeVMobilePhone AuthMethodsType = "mobilePhone"
// AuthMethodsTypeVOfficePhone undocumented
AuthMethodsTypeVOfficePhone AuthMethodsType = "officePhone"
// AuthMethodsTypeVSecurityQuestion undocumented
AuthMethodsTypeVSecurityQuestion AuthMethodsType = "securityQuestion"
// AuthMethodsTypeVAppNotification undocumented
AuthMethodsTypeVAppNotification AuthMethodsType = "appNotification"
// AuthMethodsTypeVAppNotificationCode undocumented
AuthMethodsTypeVAppNotificationCode AuthMethodsType = "appNotificationCode"
// AuthMethodsTypeVAppNotificationAndCode undocumented
AuthMethodsTypeVAppNotificationAndCode AuthMethodsType = "appNotificationAndCode"
// AuthMethodsTypeVAppPassword undocumented
AuthMethodsTypeVAppPassword AuthMethodsType = "appPassword"
// AuthMethodsTypeVFido undocumented
AuthMethodsTypeVFido AuthMethodsType = "fido"
// AuthMethodsTypeVAlternateMobilePhone undocumented
AuthMethodsTypeVAlternateMobilePhone AuthMethodsType = "alternateMobilePhone"
// AuthMethodsTypeVMobilePhoneAndSMS undocumented
AuthMethodsTypeVMobilePhoneAndSMS AuthMethodsType = "mobilePhoneAndSMS"
// AuthMethodsTypeVUnknownFutureValue undocumented
AuthMethodsTypeVUnknownFutureValue AuthMethodsType = "unknownFutureValue"
)
var (
// AuthMethodsTypePEmail is a pointer to AuthMethodsTypeVEmail
AuthMethodsTypePEmail = &_AuthMethodsTypePEmail
// AuthMethodsTypePMobileSMS is a pointer to AuthMethodsTypeVMobileSMS
AuthMethodsTypePMobileSMS = &_AuthMethodsTypePMobileSMS
// AuthMethodsTypePMobilePhone is a pointer to AuthMethodsTypeVMobilePhone
AuthMethodsTypePMobilePhone = &_AuthMethodsTypePMobilePhone
// AuthMethodsTypePOfficePhone is a pointer to AuthMethodsTypeVOfficePhone
AuthMethodsTypePOfficePhone = &_AuthMethodsTypePOfficePhone
// AuthMethodsTypePSecurityQuestion is a pointer to AuthMethodsTypeVSecurityQuestion
AuthMethodsTypePSecurityQuestion = &_AuthMethodsTypePSecurityQuestion
// AuthMethodsTypePAppNotification is a pointer to AuthMethodsTypeVAppNotification
AuthMethodsTypePAppNotification = &_AuthMethodsTypePAppNotification
// AuthMethodsTypePAppNotificationCode is a pointer to AuthMethodsTypeVAppNotificationCode
AuthMethodsTypePAppNotificationCode = &_AuthMethodsTypePAppNotificationCode
// AuthMethodsTypePAppNotificationAndCode is a pointer to AuthMethodsTypeVAppNotificationAndCode
AuthMethodsTypePAppNotificationAndCode = &_AuthMethodsTypePAppNotificationAndCode
// AuthMethodsTypePAppPassword is a pointer to AuthMethodsTypeVAppPassword
AuthMethodsTypePAppPassword = &_AuthMethodsTypePAppPassword
// AuthMethodsTypePFido is a pointer to AuthMethodsTypeVFido
AuthMethodsTypePFido = &_AuthMethodsTypePFido
// AuthMethodsTypePAlternateMobilePhone is a pointer to AuthMethodsTypeVAlternateMobilePhone
AuthMethodsTypePAlternateMobilePhone = &_AuthMethodsTypePAlternateMobilePhone
// AuthMethodsTypePMobilePhoneAndSMS is a pointer to AuthMethodsTypeVMobilePhoneAndSMS
AuthMethodsTypePMobilePhoneAndSMS = &_AuthMethodsTypePMobilePhoneAndSMS
// AuthMethodsTypePUnknownFutureValue is a pointer to AuthMethodsTypeVUnknownFutureValue
AuthMethodsTypePUnknownFutureValue = &_AuthMethodsTypePUnknownFutureValue
)
var (
_AuthMethodsTypePEmail = AuthMethodsTypeVEmail
_AuthMethodsTypePMobileSMS = AuthMethodsTypeVMobileSMS
_AuthMethodsTypePMobilePhone = AuthMethodsTypeVMobilePhone
_AuthMethodsTypePOfficePhone = AuthMethodsTypeVOfficePhone
_AuthMethodsTypePSecurityQuestion = AuthMethodsTypeVSecurityQuestion
_AuthMethodsTypePAppNotification = AuthMethodsTypeVAppNotification
_AuthMethodsTypePAppNotificationCode = AuthMethodsTypeVAppNotificationCode
_AuthMethodsTypePAppNotificationAndCode = AuthMethodsTypeVAppNotificationAndCode
_AuthMethodsTypePAppPassword = AuthMethodsTypeVAppPassword
_AuthMethodsTypePFido = AuthMethodsTypeVFido
_AuthMethodsTypePAlternateMobilePhone = AuthMethodsTypeVAlternateMobilePhone
_AuthMethodsTypePMobilePhoneAndSMS = AuthMethodsTypeVMobilePhoneAndSMS
_AuthMethodsTypePUnknownFutureValue = AuthMethodsTypeVUnknownFutureValue
)
|