package request type AddIndustry struct { Name string `json:"name" binding:"required"` } type UpdateIndustry struct { Id int `json:"id" binding:"required"` Name string `json:"name" binding:"required"` } type UpdateIndustries struct { Industries []*UpdateIndustry `json:"industries" binding:"required"` }