github.com/yaegashi/msgraph.go@v0.1.4/beta/EnumProperty.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // PropertyType undocumented
     6  type PropertyType string
     7  
     8  const (
     9  	// PropertyTypeVString undocumented
    10  	PropertyTypeVString PropertyType = "String"
    11  	// PropertyTypeVInt64 undocumented
    12  	PropertyTypeVInt64 PropertyType = "Int64"
    13  	// PropertyTypeVDouble undocumented
    14  	PropertyTypeVDouble PropertyType = "Double"
    15  	// PropertyTypeVDateTime undocumented
    16  	PropertyTypeVDateTime PropertyType = "DateTime"
    17  	// PropertyTypeVBoolean undocumented
    18  	PropertyTypeVBoolean PropertyType = "Boolean"
    19  	// PropertyTypeVStringCollection undocumented
    20  	PropertyTypeVStringCollection PropertyType = "StringCollection"
    21  	// PropertyTypeVInt64Collection undocumented
    22  	PropertyTypeVInt64Collection PropertyType = "Int64Collection"
    23  	// PropertyTypeVDoubleCollection undocumented
    24  	PropertyTypeVDoubleCollection PropertyType = "DoubleCollection"
    25  	// PropertyTypeVDateTimeCollection undocumented
    26  	PropertyTypeVDateTimeCollection PropertyType = "DateTimeCollection"
    27  )
    28  
    29  var (
    30  	// PropertyTypePString is a pointer to PropertyTypeVString
    31  	PropertyTypePString = &_PropertyTypePString
    32  	// PropertyTypePInt64 is a pointer to PropertyTypeVInt64
    33  	PropertyTypePInt64 = &_PropertyTypePInt64
    34  	// PropertyTypePDouble is a pointer to PropertyTypeVDouble
    35  	PropertyTypePDouble = &_PropertyTypePDouble
    36  	// PropertyTypePDateTime is a pointer to PropertyTypeVDateTime
    37  	PropertyTypePDateTime = &_PropertyTypePDateTime
    38  	// PropertyTypePBoolean is a pointer to PropertyTypeVBoolean
    39  	PropertyTypePBoolean = &_PropertyTypePBoolean
    40  	// PropertyTypePStringCollection is a pointer to PropertyTypeVStringCollection
    41  	PropertyTypePStringCollection = &_PropertyTypePStringCollection
    42  	// PropertyTypePInt64Collection is a pointer to PropertyTypeVInt64Collection
    43  	PropertyTypePInt64Collection = &_PropertyTypePInt64Collection
    44  	// PropertyTypePDoubleCollection is a pointer to PropertyTypeVDoubleCollection
    45  	PropertyTypePDoubleCollection = &_PropertyTypePDoubleCollection
    46  	// PropertyTypePDateTimeCollection is a pointer to PropertyTypeVDateTimeCollection
    47  	PropertyTypePDateTimeCollection = &_PropertyTypePDateTimeCollection
    48  )
    49  
    50  var (
    51  	_PropertyTypePString             = PropertyTypeVString
    52  	_PropertyTypePInt64              = PropertyTypeVInt64
    53  	_PropertyTypePDouble             = PropertyTypeVDouble
    54  	_PropertyTypePDateTime           = PropertyTypeVDateTime
    55  	_PropertyTypePBoolean            = PropertyTypeVBoolean
    56  	_PropertyTypePStringCollection   = PropertyTypeVStringCollection
    57  	_PropertyTypePInt64Collection    = PropertyTypeVInt64Collection
    58  	_PropertyTypePDoubleCollection   = PropertyTypeVDoubleCollection
    59  	_PropertyTypePDateTimeCollection = PropertyTypeVDateTimeCollection
    60  )