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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // RunAsAccountType undocumented
     6  type RunAsAccountType string
     7  
     8  const (
     9  	// RunAsAccountTypeVSystem undocumented
    10  	RunAsAccountTypeVSystem RunAsAccountType = "system"
    11  	// RunAsAccountTypeVUser undocumented
    12  	RunAsAccountTypeVUser RunAsAccountType = "user"
    13  )
    14  
    15  var (
    16  	// RunAsAccountTypePSystem is a pointer to RunAsAccountTypeVSystem
    17  	RunAsAccountTypePSystem = &_RunAsAccountTypePSystem
    18  	// RunAsAccountTypePUser is a pointer to RunAsAccountTypeVUser
    19  	RunAsAccountTypePUser = &_RunAsAccountTypePUser
    20  )
    21  
    22  var (
    23  	_RunAsAccountTypePSystem = RunAsAccountTypeVSystem
    24  	_RunAsAccountTypePUser   = RunAsAccountTypeVUser
    25  )
    26  
    27  // RunState undocumented
    28  type RunState string
    29  
    30  const (
    31  	// RunStateVUnknown undocumented
    32  	RunStateVUnknown RunState = "unknown"
    33  	// RunStateVSuccess undocumented
    34  	RunStateVSuccess RunState = "success"
    35  	// RunStateVFail undocumented
    36  	RunStateVFail RunState = "fail"
    37  	// RunStateVScriptError undocumented
    38  	RunStateVScriptError RunState = "scriptError"
    39  	// RunStateVPending undocumented
    40  	RunStateVPending RunState = "pending"
    41  	// RunStateVNotApplicable undocumented
    42  	RunStateVNotApplicable RunState = "notApplicable"
    43  )
    44  
    45  var (
    46  	// RunStatePUnknown is a pointer to RunStateVUnknown
    47  	RunStatePUnknown = &_RunStatePUnknown
    48  	// RunStatePSuccess is a pointer to RunStateVSuccess
    49  	RunStatePSuccess = &_RunStatePSuccess
    50  	// RunStatePFail is a pointer to RunStateVFail
    51  	RunStatePFail = &_RunStatePFail
    52  	// RunStatePScriptError is a pointer to RunStateVScriptError
    53  	RunStatePScriptError = &_RunStatePScriptError
    54  	// RunStatePPending is a pointer to RunStateVPending
    55  	RunStatePPending = &_RunStatePPending
    56  	// RunStatePNotApplicable is a pointer to RunStateVNotApplicable
    57  	RunStatePNotApplicable = &_RunStatePNotApplicable
    58  )
    59  
    60  var (
    61  	_RunStatePUnknown       = RunStateVUnknown
    62  	_RunStatePSuccess       = RunStateVSuccess
    63  	_RunStatePFail          = RunStateVFail
    64  	_RunStatePScriptError   = RunStateVScriptError
    65  	_RunStatePPending       = RunStateVPending
    66  	_RunStatePNotApplicable = RunStateVNotApplicable
    67  )