blob: 45d4b973bae2906084507fc329f6cdcc762d92d2 (
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
// ContentState undocumented
type ContentState int
const (
// ContentStateVRest undocumented
ContentStateVRest ContentState = 0
// ContentStateVMotion undocumented
ContentStateVMotion ContentState = 1
// ContentStateVUse undocumented
ContentStateVUse ContentState = 2
)
// ContentStatePRest returns a pointer to ContentStateVRest
func ContentStatePRest() *ContentState {
v := ContentStateVRest
return &v
}
// ContentStatePMotion returns a pointer to ContentStateVMotion
func ContentStatePMotion() *ContentState {
v := ContentStateVMotion
return &v
}
// ContentStatePUse returns a pointer to ContentStateVUse
func ContentStatePUse() *ContentState {
v := ContentStateVUse
return &v
}
|