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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // ErrorCode undocumented
     6  type ErrorCode string
     7  
     8  const (
     9  	// ErrorCodeVNoError undocumented
    10  	ErrorCodeVNoError ErrorCode = "noError"
    11  	// ErrorCodeVUnauthorized undocumented
    12  	ErrorCodeVUnauthorized ErrorCode = "unauthorized"
    13  	// ErrorCodeVNotFound undocumented
    14  	ErrorCodeVNotFound ErrorCode = "notFound"
    15  	// ErrorCodeVDeleted undocumented
    16  	ErrorCodeVDeleted ErrorCode = "deleted"
    17  )
    18  
    19  var (
    20  	// ErrorCodePNoError is a pointer to ErrorCodeVNoError
    21  	ErrorCodePNoError = &_ErrorCodePNoError
    22  	// ErrorCodePUnauthorized is a pointer to ErrorCodeVUnauthorized
    23  	ErrorCodePUnauthorized = &_ErrorCodePUnauthorized
    24  	// ErrorCodePNotFound is a pointer to ErrorCodeVNotFound
    25  	ErrorCodePNotFound = &_ErrorCodePNotFound
    26  	// ErrorCodePDeleted is a pointer to ErrorCodeVDeleted
    27  	ErrorCodePDeleted = &_ErrorCodePDeleted
    28  )
    29  
    30  var (
    31  	_ErrorCodePNoError      = ErrorCodeVNoError
    32  	_ErrorCodePUnauthorized = ErrorCodeVUnauthorized
    33  	_ErrorCodePNotFound     = ErrorCodeVNotFound
    34  	_ErrorCodePDeleted      = ErrorCodeVDeleted
    35  )