forked from ebhomengo/niki
11 lines
287 B
Go
11 lines
287 B
Go
|
package agentkindboxreqparam
|
||
|
|
||
|
type DeliverKindBoxReqRequest struct {
|
||
|
KindBoxReqID uint `json:"-" param:"id"`
|
||
|
SerialNumbers []string `json:"serial_numbers" example:"1,2,3"`
|
||
|
}
|
||
|
|
||
|
type DeliverKindBoxReqResponse struct {
|
||
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
||
|
}
|