natsio/model/product_request.go

15 lines
290 B
Go
Raw Normal View History

2022-12-26 07:08:14 +00:00
package model
type ProductApplyRequestPayload struct {
RequestID string `json:"requestId"`
}
2023-03-01 03:42:54 +00:00
2023-03-01 07:40:34 +00:00
type ProductCreateStepsPayload struct {
RequestID string `json:"requestId"`
}
2023-03-14 08:02:32 +00:00
2023-03-01 03:42:54 +00:00
type ProductRequestChangeStatus struct {
RequestID string `json:"requestId"`
Status string `json:"status"`
}