mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 12:10:26 +00:00
36 lines
1.1 KiB
Go
36 lines
1.1 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
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
|
||
|
)
|