data class StarWarsMovie(val title: String, val episode_id: Int, val release_date: String) Believe it or not, this one line gives you a full-blown class. It is a data class, which provides common ...