blob: 94767aeb2c5ce1829abab0b4cd14849808c22632 (
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
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// PropertyType undocumented
type PropertyType string
const (
// PropertyTypeVString undocumented
PropertyTypeVString PropertyType = "String"
// PropertyTypeVInt64 undocumented
PropertyTypeVInt64 PropertyType = "Int64"
// PropertyTypeVDouble undocumented
PropertyTypeVDouble PropertyType = "Double"
// PropertyTypeVDateTime undocumented
PropertyTypeVDateTime PropertyType = "DateTime"
// PropertyTypeVBoolean undocumented
PropertyTypeVBoolean PropertyType = "Boolean"
// PropertyTypeVStringCollection undocumented
PropertyTypeVStringCollection PropertyType = "StringCollection"
// PropertyTypeVInt64Collection undocumented
PropertyTypeVInt64Collection PropertyType = "Int64Collection"
// PropertyTypeVDoubleCollection undocumented
PropertyTypeVDoubleCollection PropertyType = "DoubleCollection"
// PropertyTypeVDateTimeCollection undocumented
PropertyTypeVDateTimeCollection PropertyType = "DateTimeCollection"
)
var (
// PropertyTypePString is a pointer to PropertyTypeVString
PropertyTypePString = &_PropertyTypePString
// PropertyTypePInt64 is a pointer to PropertyTypeVInt64
PropertyTypePInt64 = &_PropertyTypePInt64
// PropertyTypePDouble is a pointer to PropertyTypeVDouble
PropertyTypePDouble = &_PropertyTypePDouble
// PropertyTypePDateTime is a pointer to PropertyTypeVDateTime
PropertyTypePDateTime = &_PropertyTypePDateTime
// PropertyTypePBoolean is a pointer to PropertyTypeVBoolean
PropertyTypePBoolean = &_PropertyTypePBoolean
// PropertyTypePStringCollection is a pointer to PropertyTypeVStringCollection
PropertyTypePStringCollection = &_PropertyTypePStringCollection
// PropertyTypePInt64Collection is a pointer to PropertyTypeVInt64Collection
PropertyTypePInt64Collection = &_PropertyTypePInt64Collection
// PropertyTypePDoubleCollection is a pointer to PropertyTypeVDoubleCollection
PropertyTypePDoubleCollection = &_PropertyTypePDoubleCollection
// PropertyTypePDateTimeCollection is a pointer to PropertyTypeVDateTimeCollection
PropertyTypePDateTimeCollection = &_PropertyTypePDateTimeCollection
)
var (
_PropertyTypePString = PropertyTypeVString
_PropertyTypePInt64 = PropertyTypeVInt64
_PropertyTypePDouble = PropertyTypeVDouble
_PropertyTypePDateTime = PropertyTypeVDateTime
_PropertyTypePBoolean = PropertyTypeVBoolean
_PropertyTypePStringCollection = PropertyTypeVStringCollection
_PropertyTypePInt64Collection = PropertyTypeVInt64Collection
_PropertyTypePDoubleCollection = PropertyTypeVDoubleCollection
_PropertyTypePDateTimeCollection = PropertyTypeVDateTimeCollection
)
|