Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. data class Video(
  2. val id: String,
  3. @Json(name = "video_url") val videoUrl: String,
  4. @Json(name = "preview_image") val previewImage: Image,
  5. @Json(name = "video_title") val videoTitle: String = EMPTY_STRING,
  6. val duration: Int = 0,
  7. @Json(name = "view_count") val viewCount: Int = 0,
  8. val type: VideoType = VideoType.unknown
  9. )
  10.  
  11. enum class VideoType {
  12. unknown, recipe, article
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement