2020-09-04 21:29:13 +00:00
|
|
|
// Code generated by msgraph.go/gen DO NOT EDIT.
|
2020-03-15 22:43:46 +00:00
|
|
|
|
|
|
|
package msgraph
|
|
|
|
|
|
|
|
// Mutability undocumented
|
|
|
|
type Mutability string
|
|
|
|
|
|
|
|
const (
|
|
|
|
// MutabilityVReadWrite undocumented
|
|
|
|
MutabilityVReadWrite Mutability = "ReadWrite"
|
|
|
|
// MutabilityVReadOnly undocumented
|
|
|
|
MutabilityVReadOnly Mutability = "ReadOnly"
|
|
|
|
// MutabilityVImmutable undocumented
|
|
|
|
MutabilityVImmutable Mutability = "Immutable"
|
|
|
|
// MutabilityVWriteOnly undocumented
|
|
|
|
MutabilityVWriteOnly Mutability = "WriteOnly"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// MutabilityPReadWrite is a pointer to MutabilityVReadWrite
|
|
|
|
MutabilityPReadWrite = &_MutabilityPReadWrite
|
|
|
|
// MutabilityPReadOnly is a pointer to MutabilityVReadOnly
|
|
|
|
MutabilityPReadOnly = &_MutabilityPReadOnly
|
|
|
|
// MutabilityPImmutable is a pointer to MutabilityVImmutable
|
|
|
|
MutabilityPImmutable = &_MutabilityPImmutable
|
|
|
|
// MutabilityPWriteOnly is a pointer to MutabilityVWriteOnly
|
|
|
|
MutabilityPWriteOnly = &_MutabilityPWriteOnly
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
_MutabilityPReadWrite = MutabilityVReadWrite
|
|
|
|
_MutabilityPReadOnly = MutabilityVReadOnly
|
|
|
|
_MutabilityPImmutable = MutabilityVImmutable
|
|
|
|
_MutabilityPWriteOnly = MutabilityVWriteOnly
|
|
|
|
)
|