forked from ebhomengo/niki
22 lines
753 B
Go
22 lines
753 B
Go
package benefactorkindboxreqparam
|
|
|
|
import (
|
|
"time"
|
|
|
|
entity "git.gocasts.ir/ebhomengo/niki/entity"
|
|
)
|
|
|
|
type KindBoxReqAddRequest struct {
|
|
BenefactorID uint `json:"-"`
|
|
KindBoxType entity.KindBoxType `json:"kind_box_type" example:"on-table"`
|
|
DeliverAddressID uint `json:"deliver_address_id" example:"1"`
|
|
DeliverReferDate time.Time `json:"deliver_refer_date" example:"2025-01-02T15:04:05Z"`
|
|
DeliverReferTimeID uint `json:"deliver_refer_time_id" example:"1"`
|
|
CountRequested uint `json:"count_requested" example:"2"`
|
|
}
|
|
|
|
type KindBoxReqAddResponse struct {
|
|
Data Data `json:"data"`
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
|
}
|