blob: c328c2d0ca5145590582686f7fa17aa1f73ec76d (
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
// MicrosoftStoreForBusinessPortalSelectionOptions undocumented
type MicrosoftStoreForBusinessPortalSelectionOptions int
const (
// MicrosoftStoreForBusinessPortalSelectionOptionsVNone undocumented
MicrosoftStoreForBusinessPortalSelectionOptionsVNone MicrosoftStoreForBusinessPortalSelectionOptions = 0
// MicrosoftStoreForBusinessPortalSelectionOptionsVCompanyPortal undocumented
MicrosoftStoreForBusinessPortalSelectionOptionsVCompanyPortal MicrosoftStoreForBusinessPortalSelectionOptions = 1
// MicrosoftStoreForBusinessPortalSelectionOptionsVPrivateStore undocumented
MicrosoftStoreForBusinessPortalSelectionOptionsVPrivateStore MicrosoftStoreForBusinessPortalSelectionOptions = 2
)
// MicrosoftStoreForBusinessPortalSelectionOptionsPNone returns a pointer to MicrosoftStoreForBusinessPortalSelectionOptionsVNone
func MicrosoftStoreForBusinessPortalSelectionOptionsPNone() *MicrosoftStoreForBusinessPortalSelectionOptions {
v := MicrosoftStoreForBusinessPortalSelectionOptionsVNone
return &v
}
// MicrosoftStoreForBusinessPortalSelectionOptionsPCompanyPortal returns a pointer to MicrosoftStoreForBusinessPortalSelectionOptionsVCompanyPortal
func MicrosoftStoreForBusinessPortalSelectionOptionsPCompanyPortal() *MicrosoftStoreForBusinessPortalSelectionOptions {
v := MicrosoftStoreForBusinessPortalSelectionOptionsVCompanyPortal
return &v
}
// MicrosoftStoreForBusinessPortalSelectionOptionsPPrivateStore returns a pointer to MicrosoftStoreForBusinessPortalSelectionOptionsVPrivateStore
func MicrosoftStoreForBusinessPortalSelectionOptionsPPrivateStore() *MicrosoftStoreForBusinessPortalSelectionOptions {
v := MicrosoftStoreForBusinessPortalSelectionOptionsVPrivateStore
return &v
}
|