forked from ebhomengo/niki
12 lines
277 B
Go
12 lines
277 B
Go
|
package agentkindboxreqparam
|
||
|
|
||
|
type DeliveryAwaitingGetRequest struct {
|
||
|
KindBoxReqID uint `param:"id"`
|
||
|
AgentID uint
|
||
|
}
|
||
|
|
||
|
type DeliveryAwaitingGetResponse struct {
|
||
|
Data Data `json:"data"`
|
||
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
||
|
}
|