2024-01-22 15:21:13 +00:00
|
|
|
package adminkindboxreqparam
|
|
|
|
|
|
|
|
type KindBoxReqRejectRequest struct {
|
2024-05-20 17:37:44 +00:00
|
|
|
ID uint `json:"-"`
|
2024-05-17 20:16:28 +00:00
|
|
|
Description string `json:"description" example:"description"`
|
2024-01-22 15:21:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type KindBoxReqRejectResponse struct {
|
2024-09-10 20:55:19 +00:00
|
|
|
Data Data `json:"data"`
|
|
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
2024-01-22 15:21:13 +00:00
|
|
|
}
|