2024-01-22 08:14:57 +00:00
|
|
|
package adminkindboxreqparam
|
|
|
|
|
|
|
|
type KindBoxReqAcceptRequest struct {
|
2024-05-20 17:37:44 +00:00
|
|
|
ID uint `json:"-"`
|
2024-01-22 10:43:16 +00:00
|
|
|
CountAccepted uint `json:"count_accepted"`
|
2024-01-22 08:14:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type KindBoxReqAcceptResponse struct {
|
2024-09-10 20:55:19 +00:00
|
|
|
Data Data `json:"data"`
|
|
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
2024-01-22 08:14:57 +00:00
|
|
|
}
|