mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
26 lines
733 B
Go
26 lines
733 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// AlertHistoryState undocumented
|
||
|
type AlertHistoryState struct {
|
||
|
// Object is the base model of AlertHistoryState
|
||
|
Object
|
||
|
// AppID undocumented
|
||
|
AppID *string `json:"appId,omitempty"`
|
||
|
// AssignedTo undocumented
|
||
|
AssignedTo *string `json:"assignedTo,omitempty"`
|
||
|
// Comments undocumented
|
||
|
Comments []string `json:"comments,omitempty"`
|
||
|
// Feedback undocumented
|
||
|
Feedback *AlertFeedback `json:"feedback,omitempty"`
|
||
|
// Status undocumented
|
||
|
Status *AlertStatus `json:"status,omitempty"`
|
||
|
// UpdatedDateTime undocumented
|
||
|
UpdatedDateTime *time.Time `json:"updatedDateTime,omitempty"`
|
||
|
// User undocumented
|
||
|
User *string `json:"user,omitempty"`
|
||
|
}
|