2024-07-27 16:17:13 +00:00
|
|
|
package param
|
|
|
|
|
2024-08-16 17:37:37 +00:00
|
|
|
type NotificationKindBoxReqAdded struct {
|
|
|
|
KindBoxReqID uint
|
|
|
|
}
|
|
|
|
|
2024-07-27 16:17:13 +00:00
|
|
|
type NotificationKindBoxReqAccepted struct {
|
|
|
|
KindBoxReqID uint
|
|
|
|
}
|
2024-08-06 21:41:09 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2024-08-16 17:37:37 +00:00
|
|
|
type NotificationKindBoxRegisteredEmptyingRequest struct {
|
|
|
|
KindBoxID uint
|
|
|
|
}
|
|
|
|
|
2024-08-06 21:41:09 +00:00
|
|
|
type NotificationKindBoxAssigned struct {
|
|
|
|
ReceiverAgentID uint
|
|
|
|
}
|
|
|
|
|
|
|
|
type NotificationKindBoxEnumerated struct {
|
|
|
|
KindBoxID uint
|
|
|
|
}
|
2024-09-16 14:56:05 +00:00
|
|
|
|
|
|
|
type NotificationKindBoxReturned struct {
|
|
|
|
KindBoxID uint
|
|
|
|
}
|