No Description

Models.scala 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package fr.natan.akkastreamfileprocessingapi.models
  2. object Models {
  3. final case class Person(
  4. nconst: String,
  5. primaryName: String,
  6. birthYear: String,
  7. deathYear: String,
  8. primaryProfession: List[String],
  9. knownForTitles: List[String]
  10. ) {
  11. override def toString: String = {
  12. "Person[person-ID:" + nconst +
  13. ", primary-name:" + primaryName +
  14. ", birth-year:" + birthYear +
  15. ", dearth year:" + deathYear +
  16. ", primary profession:" + primaryProfession +
  17. ", known-for-titles"+knownForTitles+
  18. "]"
  19. }
  20. }
  21. final case class TvSeries(
  22. tconst: String,
  23. titleType: String,
  24. primaryTitle: String,
  25. originalTitle: String,
  26. startYear: String,
  27. endYear: String,
  28. runtimeMinutes: String,
  29. genres: String
  30. ) {
  31. override def toString: String = {
  32. "TvSerie[tvSerieID : " + tconst +
  33. ", title-type:" + titleType +
  34. ", primary-title:" + primaryTitle + "" +
  35. ", riginal-title:" + originalTitle +
  36. ", start year:" + startYear +
  37. ", end year:" + endYear +
  38. ", runtime minutes:" + runtimeMinutes +
  39. ", genres:" + genres + "]"
  40. }
  41. }
  42. }

Powered by TurnKey Linux.