blob: f832b29bc3b80b5f785aae37f1442c48cef36ead (
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
34
35
36
37
38
39
40
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// PlannerPreviewType undocumented
type PlannerPreviewType string
const (
// PlannerPreviewTypeVAutomatic undocumented
PlannerPreviewTypeVAutomatic PlannerPreviewType = "automatic"
// PlannerPreviewTypeVNoPreview undocumented
PlannerPreviewTypeVNoPreview PlannerPreviewType = "noPreview"
// PlannerPreviewTypeVChecklist undocumented
PlannerPreviewTypeVChecklist PlannerPreviewType = "checklist"
// PlannerPreviewTypeVDescription undocumented
PlannerPreviewTypeVDescription PlannerPreviewType = "description"
// PlannerPreviewTypeVReference undocumented
PlannerPreviewTypeVReference PlannerPreviewType = "reference"
)
var (
// PlannerPreviewTypePAutomatic is a pointer to PlannerPreviewTypeVAutomatic
PlannerPreviewTypePAutomatic = &_PlannerPreviewTypePAutomatic
// PlannerPreviewTypePNoPreview is a pointer to PlannerPreviewTypeVNoPreview
PlannerPreviewTypePNoPreview = &_PlannerPreviewTypePNoPreview
// PlannerPreviewTypePChecklist is a pointer to PlannerPreviewTypeVChecklist
PlannerPreviewTypePChecklist = &_PlannerPreviewTypePChecklist
// PlannerPreviewTypePDescription is a pointer to PlannerPreviewTypeVDescription
PlannerPreviewTypePDescription = &_PlannerPreviewTypePDescription
// PlannerPreviewTypePReference is a pointer to PlannerPreviewTypeVReference
PlannerPreviewTypePReference = &_PlannerPreviewTypePReference
)
var (
_PlannerPreviewTypePAutomatic = PlannerPreviewTypeVAutomatic
_PlannerPreviewTypePNoPreview = PlannerPreviewTypeVNoPreview
_PlannerPreviewTypePChecklist = PlannerPreviewTypeVChecklist
_PlannerPreviewTypePDescription = PlannerPreviewTypeVDescription
_PlannerPreviewTypePReference = PlannerPreviewTypeVReference
)
|