package responses type CreateRoomResponse struct { ID int64 `json:"id"` } type UpdateRoomResponse struct { ID int64 `json:"id"` WarehouseID int64 `json:"warehouseId"` Name string `json:"name"` Description string `json:"description"` }