forked from ebhomengo/niki
1
0
Fork 0
niki/param/notification.go

39 lines
637 B
Go
Raw Normal View History

package param
type NotificationKindBoxReqAdded struct {
KindBoxReqID uint
}
type NotificationKindBoxReqAccepted struct {
KindBoxReqID uint
}
type NotificationKindBoxReqRejected struct {
KindBoxReqID uint
Description string
}
type NotificationKindBoxReqAssigned struct {
KindBoxReqID uint
}
2024-09-16 14:56:05 +00:00
type NotificationKindBoxReqDelivered struct {
KindBoxReqID uint
}
type NotificationKindBoxRegisteredEmptyingRequest struct {
KindBoxID uint
}
type NotificationKindBoxAssigned struct {
ReceiverAgentID uint
}
type NotificationKindBoxEnumerated struct {
KindBoxID uint
}
2024-09-16 14:56:05 +00:00
type NotificationKindBoxReturned struct {
KindBoxID uint
}