Skip to content

Instantly share code, notes, and snippets.

@enginebai
Created August 3, 2020 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enginebai/2c3eaa7c9799476834f7d15c2d713cca to your computer and use it in GitHub Desktop.
Save enginebai/2c3eaa7c9799476834f7d15c2d713cca to your computer and use it in GitHub Desktop.
MovieHunt blog part2. data class for response
data class MovieListResponse(
@SerializedName("id")
val id: String,
@SerializedName("poster_path")
val posterPath: String?,
@SerializedName("title")
val title: String?,
...
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment