blob: dabb3cebcc7827643404daae9cc54c90a45cafb2 (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// AdminConsentState undocumented
type AdminConsentState int
const (
// AdminConsentStateVNotConfigured undocumented
AdminConsentStateVNotConfigured AdminConsentState = 0
// AdminConsentStateVGranted undocumented
AdminConsentStateVGranted AdminConsentState = 1
// AdminConsentStateVNotGranted undocumented
AdminConsentStateVNotGranted AdminConsentState = 2
)
// AdminConsentStatePNotConfigured returns a pointer to AdminConsentStateVNotConfigured
func AdminConsentStatePNotConfigured() *AdminConsentState {
v := AdminConsentStateVNotConfigured
return &v
}
// AdminConsentStatePGranted returns a pointer to AdminConsentStateVGranted
func AdminConsentStatePGranted() *AdminConsentState {
v := AdminConsentStateVGranted
return &v
}
// AdminConsentStatePNotGranted returns a pointer to AdminConsentStateVNotGranted
func AdminConsentStatePNotGranted() *AdminConsentState {
v := AdminConsentStateVNotGranted
return &v
}
|