story1, 10, small
story2, 20, medium
sotry3, 3, small
story4, 50, xlarge
I want to convert my data to Dataset. I have a column name storyType (small, medium, large, xlarge). So I don't know how to write my case class in this situation
case class Story(name:String, point: Int, storyType: ???)