forked from ebhomengo/niki
18 lines
453 B
Go
18 lines
453 B
Go
|
package agentkindboxreqparam
|
||
|
|
||
|
import (
|
||
|
"git.gocasts.ir/ebhomengo/niki/param"
|
||
|
)
|
||
|
|
||
|
type DeliveryAwaitingGetAllRequest struct {
|
||
|
Pagination param.PaginationRequest
|
||
|
Sort param.SortRequest
|
||
|
Filter param.FilterRequest
|
||
|
}
|
||
|
|
||
|
type DeliveryAwaitingGetAllResponse struct {
|
||
|
Data []Data `json:"data"`
|
||
|
Pagination param.PaginationResponse `json:"pagination"`
|
||
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
||
|
}
|