2024-01-02 14:04:16 +00:00
|
|
|
package benefactorkindboxparam
|
2023-12-26 17:52:20 +00:00
|
|
|
|
2023-12-26 17:53:25 +00:00
|
|
|
type KindBoxGetRequest struct {
|
2023-12-26 17:52:20 +00:00
|
|
|
BenefactorID uint
|
2023-12-26 17:53:25 +00:00
|
|
|
KindBoxID uint
|
2023-12-26 17:52:20 +00:00
|
|
|
}
|
|
|
|
|
2023-12-26 17:53:25 +00:00
|
|
|
type KindBoxGetResponse struct {
|
2024-09-10 20:55:19 +00:00
|
|
|
Data Data `json:"data"`
|
2024-08-01 10:20:18 +00:00
|
|
|
FieldErrors map[string]string `json:"field_errors,omitempty"`
|
2023-12-26 17:52:20 +00:00
|
|
|
}
|