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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // ActionSource undocumented
     6  type ActionSource string
     7  
     8  const (
     9  	// ActionSourceVManual undocumented
    10  	ActionSourceVManual ActionSource = "manual"
    11  	// ActionSourceVAutomatic undocumented
    12  	ActionSourceVAutomatic ActionSource = "automatic"
    13  	// ActionSourceVRecommended undocumented
    14  	ActionSourceVRecommended ActionSource = "recommended"
    15  	// ActionSourceVDefault undocumented
    16  	ActionSourceVDefault ActionSource = "default"
    17  )
    18  
    19  var (
    20  	// ActionSourcePManual is a pointer to ActionSourceVManual
    21  	ActionSourcePManual = &_ActionSourcePManual
    22  	// ActionSourcePAutomatic is a pointer to ActionSourceVAutomatic
    23  	ActionSourcePAutomatic = &_ActionSourcePAutomatic
    24  	// ActionSourcePRecommended is a pointer to ActionSourceVRecommended
    25  	ActionSourcePRecommended = &_ActionSourcePRecommended
    26  	// ActionSourcePDefault is a pointer to ActionSourceVDefault
    27  	ActionSourcePDefault = &_ActionSourcePDefault
    28  )
    29  
    30  var (
    31  	_ActionSourcePManual      = ActionSourceVManual
    32  	_ActionSourcePAutomatic   = ActionSourceVAutomatic
    33  	_ActionSourcePRecommended = ActionSourceVRecommended
    34  	_ActionSourcePDefault     = ActionSourceVDefault
    35  )
    36  
    37  // ActionState undocumented
    38  type ActionState string
    39  
    40  const (
    41  	// ActionStateVNone undocumented
    42  	ActionStateVNone ActionState = "none"
    43  	// ActionStateVPending undocumented
    44  	ActionStateVPending ActionState = "pending"
    45  	// ActionStateVCanceled undocumented
    46  	ActionStateVCanceled ActionState = "canceled"
    47  	// ActionStateVActive undocumented
    48  	ActionStateVActive ActionState = "active"
    49  	// ActionStateVDone undocumented
    50  	ActionStateVDone ActionState = "done"
    51  	// ActionStateVFailed undocumented
    52  	ActionStateVFailed ActionState = "failed"
    53  	// ActionStateVNotSupported undocumented
    54  	ActionStateVNotSupported ActionState = "notSupported"
    55  )
    56  
    57  var (
    58  	// ActionStatePNone is a pointer to ActionStateVNone
    59  	ActionStatePNone = &_ActionStatePNone
    60  	// ActionStatePPending is a pointer to ActionStateVPending
    61  	ActionStatePPending = &_ActionStatePPending
    62  	// ActionStatePCanceled is a pointer to ActionStateVCanceled
    63  	ActionStatePCanceled = &_ActionStatePCanceled
    64  	// ActionStatePActive is a pointer to ActionStateVActive
    65  	ActionStatePActive = &_ActionStatePActive
    66  	// ActionStatePDone is a pointer to ActionStateVDone
    67  	ActionStatePDone = &_ActionStatePDone
    68  	// ActionStatePFailed is a pointer to ActionStateVFailed
    69  	ActionStatePFailed = &_ActionStatePFailed
    70  	// ActionStatePNotSupported is a pointer to ActionStateVNotSupported
    71  	ActionStatePNotSupported = &_ActionStatePNotSupported
    72  )
    73  
    74  var (
    75  	_ActionStatePNone         = ActionStateVNone
    76  	_ActionStatePPending      = ActionStateVPending
    77  	_ActionStatePCanceled     = ActionStateVCanceled
    78  	_ActionStatePActive       = ActionStateVActive
    79  	_ActionStatePDone         = ActionStateVDone
    80  	_ActionStatePFailed       = ActionStateVFailed
    81  	_ActionStatePNotSupported = ActionStateVNotSupported
    82  )