package responses type CreateWarehouseResponse struct { ID int64 `json:"id"` } type UpdateWarehouseResponse struct { ID int64 `json:"id"` Name string `json:"name"` Description string `json:"description"` Address string `json:"address"` }