mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
41 lines
1.2 KiB
Go
41 lines
1.2 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// Status undocumented
|
|
type Status string
|
|
|
|
const (
|
|
// StatusVActive undocumented
|
|
StatusVActive Status = "active"
|
|
// StatusVUpdated undocumented
|
|
StatusVUpdated Status = "updated"
|
|
// StatusVDeleted undocumented
|
|
StatusVDeleted Status = "deleted"
|
|
// StatusVIgnored undocumented
|
|
StatusVIgnored Status = "ignored"
|
|
// StatusVUnknownFutureValue undocumented
|
|
StatusVUnknownFutureValue Status = "unknownFutureValue"
|
|
)
|
|
|
|
var (
|
|
// StatusPActive is a pointer to StatusVActive
|
|
StatusPActive = &_StatusPActive
|
|
// StatusPUpdated is a pointer to StatusVUpdated
|
|
StatusPUpdated = &_StatusPUpdated
|
|
// StatusPDeleted is a pointer to StatusVDeleted
|
|
StatusPDeleted = &_StatusPDeleted
|
|
// StatusPIgnored is a pointer to StatusVIgnored
|
|
StatusPIgnored = &_StatusPIgnored
|
|
// StatusPUnknownFutureValue is a pointer to StatusVUnknownFutureValue
|
|
StatusPUnknownFutureValue = &_StatusPUnknownFutureValue
|
|
)
|
|
|
|
var (
|
|
_StatusPActive = StatusVActive
|
|
_StatusPUpdated = StatusVUpdated
|
|
_StatusPDeleted = StatusVDeleted
|
|
_StatusPIgnored = StatusVIgnored
|
|
_StatusPUnknownFutureValue = StatusVUnknownFutureValue
|
|
)
|