blob: 18036f961175265f98b0cb9569b22c7cbf147a15 (
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
81
82
83
84
85
86
87
88
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
}
|