initial rename refactoring

This commit is contained in:
bergquist
2018-09-26 17:26:02 +02:00
parent 869e36995a
commit ff79f80685
8 changed files with 81 additions and 106 deletions

View File

@@ -76,33 +76,36 @@ type GetAllAlertNotificationsQuery struct {
Result []*AlertNotification
}
type AlertNotificationJournal struct {
type AlertNotificationState struct {
Id int64
OrgId int64
AlertId int64
NotifierId int64
SentAt int64
Success bool
State string
Version int64
}
type RecordNotificationJournalCommand struct {
type UpdateAlertNotificationStateCommand struct {
OrgId int64
AlertId int64
NotifierId int64
SentAt int64
Success bool
State bool
}
type GetLatestNotificationQuery struct {
type GetNotificationStateQuery struct {
OrgId int64
AlertId int64
NotifierId int64
Result []AlertNotificationJournal
Result *AlertNotificationState
}
type CleanNotificationJournalCommand struct {
type InsertAlertNotificationCommand struct {
OrgId int64
AlertId int64
NotifierId int64
SentAt int64
State string
}