blob: d73d088f6d881316c402cd051c2270344f733a5e (
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
// InkAccessSetting undocumented
type InkAccessSetting int
const (
// InkAccessSettingVNotConfigured undocumented
InkAccessSettingVNotConfigured InkAccessSetting = 0
// InkAccessSettingVEnabled undocumented
InkAccessSettingVEnabled InkAccessSetting = 1
// InkAccessSettingVDisabled undocumented
InkAccessSettingVDisabled InkAccessSetting = 2
)
// InkAccessSettingPNotConfigured returns a pointer to InkAccessSettingVNotConfigured
func InkAccessSettingPNotConfigured() *InkAccessSetting {
v := InkAccessSettingVNotConfigured
return &v
}
// InkAccessSettingPEnabled returns a pointer to InkAccessSettingVEnabled
func InkAccessSettingPEnabled() *InkAccessSetting {
v := InkAccessSettingVEnabled
return &v
}
// InkAccessSettingPDisabled returns a pointer to InkAccessSettingVDisabled
func InkAccessSettingPDisabled() *InkAccessSetting {
v := InkAccessSettingVDisabled
return &v
}
|