mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 19:10:26 +00:00
42 lines
1020 B
Go
42 lines
1020 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// Mutability undocumented
|
||
|
type Mutability int
|
||
|
|
||
|
const (
|
||
|
// MutabilityVReadWrite undocumented
|
||
|
MutabilityVReadWrite Mutability = 0
|
||
|
// MutabilityVReadOnly undocumented
|
||
|
MutabilityVReadOnly Mutability = 1
|
||
|
// MutabilityVImmutable undocumented
|
||
|
MutabilityVImmutable Mutability = 2
|
||
|
// MutabilityVWriteOnly undocumented
|
||
|
MutabilityVWriteOnly Mutability = 3
|
||
|
)
|
||
|
|
||
|
// MutabilityPReadWrite returns a pointer to MutabilityVReadWrite
|
||
|
func MutabilityPReadWrite() *Mutability {
|
||
|
v := MutabilityVReadWrite
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// MutabilityPReadOnly returns a pointer to MutabilityVReadOnly
|
||
|
func MutabilityPReadOnly() *Mutability {
|
||
|
v := MutabilityVReadOnly
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// MutabilityPImmutable returns a pointer to MutabilityVImmutable
|
||
|
func MutabilityPImmutable() *Mutability {
|
||
|
v := MutabilityVImmutable
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// MutabilityPWriteOnly returns a pointer to MutabilityVWriteOnly
|
||
|
func MutabilityPWriteOnly() *Mutability {
|
||
|
v := MutabilityVWriteOnly
|
||
|
return &v
|
||
|
}
|