forked from ebhomengo/niki
19 lines
580 B
Go
19 lines
580 B
Go
package benefactorkindboxparam
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type KindBoxRegisterEmptyingRequest struct {
|
|
KindBoxID uint `json:"-" param:"id"`
|
|
BenefactorID uint `json:"-"`
|
|
ReturnAddressID uint `json:"return_address_id" example:"1"`
|
|
ReturnReferTimeID uint `json:"return_refer_time_id" example:"1"`
|
|
ReturnReferDate time.Time `json:"return_refer_date" example:"2025-01-02T15:04:05Z"`
|
|
}
|
|
|
|
type KindBoxRegisterEmptyingRequestResponse struct {
|
|
Data Data `json:"data"`
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
|
}
|