blob: e1d3f06e683444dc1e1b313c2b0895a8374a55b5 (
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
90
91
92
93
94
95
96
97
98
99
100
101
102
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// RegistrationAuthMethod undocumented
type RegistrationAuthMethod string
const (
// RegistrationAuthMethodVEmail undocumented
RegistrationAuthMethodVEmail RegistrationAuthMethod = "email"
// RegistrationAuthMethodVMobilePhone undocumented
RegistrationAuthMethodVMobilePhone RegistrationAuthMethod = "mobilePhone"
// RegistrationAuthMethodVOfficePhone undocumented
RegistrationAuthMethodVOfficePhone RegistrationAuthMethod = "officePhone"
// RegistrationAuthMethodVSecurityQuestion undocumented
RegistrationAuthMethodVSecurityQuestion RegistrationAuthMethod = "securityQuestion"
// RegistrationAuthMethodVAppNotification undocumented
RegistrationAuthMethodVAppNotification RegistrationAuthMethod = "appNotification"
// RegistrationAuthMethodVAppCode undocumented
RegistrationAuthMethodVAppCode RegistrationAuthMethod = "appCode"
// RegistrationAuthMethodVAlternateMobilePhone undocumented
RegistrationAuthMethodVAlternateMobilePhone RegistrationAuthMethod = "alternateMobilePhone"
// RegistrationAuthMethodVFido undocumented
RegistrationAuthMethodVFido RegistrationAuthMethod = "fido"
// RegistrationAuthMethodVAppPassword undocumented
RegistrationAuthMethodVAppPassword RegistrationAuthMethod = "appPassword"
// RegistrationAuthMethodVUnknownFutureValue undocumented
RegistrationAuthMethodVUnknownFutureValue RegistrationAuthMethod = "unknownFutureValue"
)
var (
// RegistrationAuthMethodPEmail is a pointer to RegistrationAuthMethodVEmail
RegistrationAuthMethodPEmail = &_RegistrationAuthMethodPEmail
// RegistrationAuthMethodPMobilePhone is a pointer to RegistrationAuthMethodVMobilePhone
RegistrationAuthMethodPMobilePhone = &_RegistrationAuthMethodPMobilePhone
// RegistrationAuthMethodPOfficePhone is a pointer to RegistrationAuthMethodVOfficePhone
RegistrationAuthMethodPOfficePhone = &_RegistrationAuthMethodPOfficePhone
// RegistrationAuthMethodPSecurityQuestion is a pointer to RegistrationAuthMethodVSecurityQuestion
RegistrationAuthMethodPSecurityQuestion = &_RegistrationAuthMethodPSecurityQuestion
// RegistrationAuthMethodPAppNotification is a pointer to RegistrationAuthMethodVAppNotification
RegistrationAuthMethodPAppNotification = &_RegistrationAuthMethodPAppNotification
// RegistrationAuthMethodPAppCode is a pointer to RegistrationAuthMethodVAppCode
RegistrationAuthMethodPAppCode = &_RegistrationAuthMethodPAppCode
// RegistrationAuthMethodPAlternateMobilePhone is a pointer to RegistrationAuthMethodVAlternateMobilePhone
RegistrationAuthMethodPAlternateMobilePhone = &_RegistrationAuthMethodPAlternateMobilePhone
// RegistrationAuthMethodPFido is a pointer to RegistrationAuthMethodVFido
RegistrationAuthMethodPFido = &_RegistrationAuthMethodPFido
// RegistrationAuthMethodPAppPassword is a pointer to RegistrationAuthMethodVAppPassword
RegistrationAuthMethodPAppPassword = &_RegistrationAuthMethodPAppPassword
// RegistrationAuthMethodPUnknownFutureValue is a pointer to RegistrationAuthMethodVUnknownFutureValue
RegistrationAuthMethodPUnknownFutureValue = &_RegistrationAuthMethodPUnknownFutureValue
)
var (
_RegistrationAuthMethodPEmail = RegistrationAuthMethodVEmail
_RegistrationAuthMethodPMobilePhone = RegistrationAuthMethodVMobilePhone
_RegistrationAuthMethodPOfficePhone = RegistrationAuthMethodVOfficePhone
_RegistrationAuthMethodPSecurityQuestion = RegistrationAuthMethodVSecurityQuestion
_RegistrationAuthMethodPAppNotification = RegistrationAuthMethodVAppNotification
_RegistrationAuthMethodPAppCode = RegistrationAuthMethodVAppCode
_RegistrationAuthMethodPAlternateMobilePhone = RegistrationAuthMethodVAlternateMobilePhone
_RegistrationAuthMethodPFido = RegistrationAuthMethodVFido
_RegistrationAuthMethodPAppPassword = RegistrationAuthMethodVAppPassword
_RegistrationAuthMethodPUnknownFutureValue = RegistrationAuthMethodVUnknownFutureValue
)
// RegistrationStatusType undocumented
type RegistrationStatusType string
const (
// RegistrationStatusTypeVRegistered undocumented
RegistrationStatusTypeVRegistered RegistrationStatusType = "registered"
// RegistrationStatusTypeVEnabled undocumented
RegistrationStatusTypeVEnabled RegistrationStatusType = "enabled"
// RegistrationStatusTypeVCapable undocumented
RegistrationStatusTypeVCapable RegistrationStatusType = "capable"
// RegistrationStatusTypeVMFARegistered undocumented
RegistrationStatusTypeVMFARegistered RegistrationStatusType = "mfaRegistered"
// RegistrationStatusTypeVUnknownFutureValue undocumented
RegistrationStatusTypeVUnknownFutureValue RegistrationStatusType = "unknownFutureValue"
)
var (
// RegistrationStatusTypePRegistered is a pointer to RegistrationStatusTypeVRegistered
RegistrationStatusTypePRegistered = &_RegistrationStatusTypePRegistered
// RegistrationStatusTypePEnabled is a pointer to RegistrationStatusTypeVEnabled
RegistrationStatusTypePEnabled = &_RegistrationStatusTypePEnabled
// RegistrationStatusTypePCapable is a pointer to RegistrationStatusTypeVCapable
RegistrationStatusTypePCapable = &_RegistrationStatusTypePCapable
// RegistrationStatusTypePMFARegistered is a pointer to RegistrationStatusTypeVMFARegistered
RegistrationStatusTypePMFARegistered = &_RegistrationStatusTypePMFARegistered
// RegistrationStatusTypePUnknownFutureValue is a pointer to RegistrationStatusTypeVUnknownFutureValue
RegistrationStatusTypePUnknownFutureValue = &_RegistrationStatusTypePUnknownFutureValue
)
var (
_RegistrationStatusTypePRegistered = RegistrationStatusTypeVRegistered
_RegistrationStatusTypePEnabled = RegistrationStatusTypeVEnabled
_RegistrationStatusTypePCapable = RegistrationStatusTypeVCapable
_RegistrationStatusTypePMFARegistered = RegistrationStatusTypeVMFARegistered
_RegistrationStatusTypePUnknownFutureValue = RegistrationStatusTypeVUnknownFutureValue
)
|