Skip to content

Instantly share code, notes, and snippets.

@vicky7230
Created June 26, 2018 10:59
Show Gist options
  • Save vicky7230/f96123af78a815bcc98c62cb8962c4fe to your computer and use it in GitHub Desktop.
Save vicky7230/f96123af78a815bcc98c62cb8962c4fe to your computer and use it in GitHub Desktop.
data class Results(
@SerializedName("page")
@Expose
var page: Int? = null,
@SerializedName("total_results")
@Expose
var totalResults: Int? = null,
@SerializedName("total_pages")
@Expose
var totalPages: Int? = null,
@SerializedName("results")
@Expose
var results: MutableList<Result>? = null
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment