mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-24 19:52:03 -08:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
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
|
|
}
|