Skip to content

Instantly share code, notes, and snippets.

@ajailani4
Created April 10, 2021 13:16
Show Gist options
  • Save ajailani4/e1fb2200d8c0570753c1d85f9fcb3f38 to your computer and use it in GitHub Desktop.
Save ajailani4/e1fb2200d8c0570753c1d85f9fcb3f38 to your computer and use it in GitHub Desktop.
data class PhoneDataResponse(
@field:Json(name = "page")
val page: Int,
@field:Json(name = "limit")
val limit: Int,
@field:Json(name = "last_page")
val lastPage: Int,
@field:Json(name = "phones")
val phones: List<Phone>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment