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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Priority undocumented
     6  type Priority string
     7  
     8  const (
     9  	// PriorityVNone undocumented
    10  	PriorityVNone Priority = "None"
    11  	// PriorityVHigh undocumented
    12  	PriorityVHigh Priority = "High"
    13  	// PriorityVLow undocumented
    14  	PriorityVLow Priority = "Low"
    15  )
    16  
    17  var (
    18  	// PriorityPNone is a pointer to PriorityVNone
    19  	PriorityPNone = &_PriorityPNone
    20  	// PriorityPHigh is a pointer to PriorityVHigh
    21  	PriorityPHigh = &_PriorityPHigh
    22  	// PriorityPLow is a pointer to PriorityVLow
    23  	PriorityPLow = &_PriorityPLow
    24  )
    25  
    26  var (
    27  	_PriorityPNone = PriorityVNone
    28  	_PriorityPHigh = PriorityVHigh
    29  	_PriorityPLow  = PriorityVLow
    30  )