2023-12-22 21:25:16 +00:00
|
|
|
package entity
|
|
|
|
|
2024-08-01 10:20:18 +00:00
|
|
|
type KindBoxReqStatus string
|
2023-12-22 21:25:16 +00:00
|
|
|
|
|
|
|
const (
|
2024-08-01 10:20:18 +00:00
|
|
|
KindBoxReqPendingStatus = KindBoxReqStatus("pending")
|
|
|
|
KindBoxReqAcceptedStatus = KindBoxReqStatus("accepted")
|
|
|
|
KindBoxReqAssignedSenderAgentStatus = KindBoxReqStatus("assigned-sender-agent")
|
|
|
|
KindBoxReqRejectedStatus = KindBoxReqStatus("rejected")
|
|
|
|
KindBoxReqDeliveredStatus = KindBoxReqStatus("delivered")
|
2023-12-22 21:25:16 +00:00
|
|
|
)
|