blob: 10dda2a5ee9344b2d22c8c60453629746fcc2613 (
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
// MobileAppPublishingState undocumented
type MobileAppPublishingState int
const (
// MobileAppPublishingStateVNotPublished undocumented
MobileAppPublishingStateVNotPublished MobileAppPublishingState = 0
// MobileAppPublishingStateVProcessing undocumented
MobileAppPublishingStateVProcessing MobileAppPublishingState = 1
// MobileAppPublishingStateVPublished undocumented
MobileAppPublishingStateVPublished MobileAppPublishingState = 2
)
// MobileAppPublishingStatePNotPublished returns a pointer to MobileAppPublishingStateVNotPublished
func MobileAppPublishingStatePNotPublished() *MobileAppPublishingState {
v := MobileAppPublishingStateVNotPublished
return &v
}
// MobileAppPublishingStatePProcessing returns a pointer to MobileAppPublishingStateVProcessing
func MobileAppPublishingStatePProcessing() *MobileAppPublishingState {
v := MobileAppPublishingStateVProcessing
return &v
}
// MobileAppPublishingStatePPublished returns a pointer to MobileAppPublishingStateVPublished
func MobileAppPublishingStatePPublished() *MobileAppPublishingState {
v := MobileAppPublishingStateVPublished
return &v
}
|