forked from ebhomengo/niki
39 lines
637 B
Go
39 lines
637 B
Go
package param
|
|
|
|
type NotificationKindBoxReqAdded struct {
|
|
KindBoxReqID uint
|
|
}
|
|
|
|
type NotificationKindBoxReqAccepted struct {
|
|
KindBoxReqID uint
|
|
}
|
|
|
|
type NotificationKindBoxReqRejected struct {
|
|
KindBoxReqID uint
|
|
Description string
|
|
}
|
|
|
|
type NotificationKindBoxReqAssigned struct {
|
|
KindBoxReqID uint
|
|
}
|
|
|
|
type NotificationKindBoxReqDelivered struct {
|
|
KindBoxReqID uint
|
|
}
|
|
|
|
type NotificationKindBoxRegisteredEmptyingRequest struct {
|
|
KindBoxID uint
|
|
}
|
|
|
|
type NotificationKindBoxAssigned struct {
|
|
ReceiverAgentID uint
|
|
}
|
|
|
|
type NotificationKindBoxEnumerated struct {
|
|
KindBoxID uint
|
|
}
|
|
|
|
type NotificationKindBoxReturned struct {
|
|
KindBoxID uint
|
|
}
|