blob: 1aa7deb74d3e7136742c73a8870df593dea880a2 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// RecurrencePatternType undocumented
type RecurrencePatternType string
const (
// RecurrencePatternTypeVDaily undocumented
RecurrencePatternTypeVDaily RecurrencePatternType = "daily"
// RecurrencePatternTypeVWeekly undocumented
RecurrencePatternTypeVWeekly RecurrencePatternType = "weekly"
// RecurrencePatternTypeVAbsoluteMonthly undocumented
RecurrencePatternTypeVAbsoluteMonthly RecurrencePatternType = "absoluteMonthly"
// RecurrencePatternTypeVRelativeMonthly undocumented
RecurrencePatternTypeVRelativeMonthly RecurrencePatternType = "relativeMonthly"
// RecurrencePatternTypeVAbsoluteYearly undocumented
RecurrencePatternTypeVAbsoluteYearly RecurrencePatternType = "absoluteYearly"
// RecurrencePatternTypeVRelativeYearly undocumented
RecurrencePatternTypeVRelativeYearly RecurrencePatternType = "relativeYearly"
)
var (
// RecurrencePatternTypePDaily is a pointer to RecurrencePatternTypeVDaily
RecurrencePatternTypePDaily = &_RecurrencePatternTypePDaily
// RecurrencePatternTypePWeekly is a pointer to RecurrencePatternTypeVWeekly
RecurrencePatternTypePWeekly = &_RecurrencePatternTypePWeekly
// RecurrencePatternTypePAbsoluteMonthly is a pointer to RecurrencePatternTypeVAbsoluteMonthly
RecurrencePatternTypePAbsoluteMonthly = &_RecurrencePatternTypePAbsoluteMonthly
// RecurrencePatternTypePRelativeMonthly is a pointer to RecurrencePatternTypeVRelativeMonthly
RecurrencePatternTypePRelativeMonthly = &_RecurrencePatternTypePRelativeMonthly
// RecurrencePatternTypePAbsoluteYearly is a pointer to RecurrencePatternTypeVAbsoluteYearly
RecurrencePatternTypePAbsoluteYearly = &_RecurrencePatternTypePAbsoluteYearly
// RecurrencePatternTypePRelativeYearly is a pointer to RecurrencePatternTypeVRelativeYearly
RecurrencePatternTypePRelativeYearly = &_RecurrencePatternTypePRelativeYearly
)
var (
_RecurrencePatternTypePDaily = RecurrencePatternTypeVDaily
_RecurrencePatternTypePWeekly = RecurrencePatternTypeVWeekly
_RecurrencePatternTypePAbsoluteMonthly = RecurrencePatternTypeVAbsoluteMonthly
_RecurrencePatternTypePRelativeMonthly = RecurrencePatternTypeVRelativeMonthly
_RecurrencePatternTypePAbsoluteYearly = RecurrencePatternTypeVAbsoluteYearly
_RecurrencePatternTypePRelativeYearly = RecurrencePatternTypeVRelativeYearly
)
// RecurrenceRangeType undocumented
type RecurrenceRangeType string
const (
// RecurrenceRangeTypeVEndDate undocumented
RecurrenceRangeTypeVEndDate RecurrenceRangeType = "endDate"
// RecurrenceRangeTypeVNoEnd undocumented
RecurrenceRangeTypeVNoEnd RecurrenceRangeType = "noEnd"
// RecurrenceRangeTypeVNumbered undocumented
RecurrenceRangeTypeVNumbered RecurrenceRangeType = "numbered"
)
var (
// RecurrenceRangeTypePEndDate is a pointer to RecurrenceRangeTypeVEndDate
RecurrenceRangeTypePEndDate = &_RecurrenceRangeTypePEndDate
// RecurrenceRangeTypePNoEnd is a pointer to RecurrenceRangeTypeVNoEnd
RecurrenceRangeTypePNoEnd = &_RecurrenceRangeTypePNoEnd
// RecurrenceRangeTypePNumbered is a pointer to RecurrenceRangeTypeVNumbered
RecurrenceRangeTypePNumbered = &_RecurrenceRangeTypePNumbered
)
var (
_RecurrenceRangeTypePEndDate = RecurrenceRangeTypeVEndDate
_RecurrenceRangeTypePNoEnd = RecurrenceRangeTypeVNoEnd
_RecurrenceRangeTypePNumbered = RecurrenceRangeTypeVNumbered
)
|