Skip to content

Instantly share code, notes, and snippets.

@ajailani4
Created April 10, 2021 13:21
Show Gist options
  • Save ajailani4/b08c3db7d40f26f89869fcd0133bd043 to your computer and use it in GitHub Desktop.
Save ajailani4/b08c3db7d40f26f89869fcd0133bd043 to your computer and use it in GitHub Desktop.
data class PhoneSpecsDataResponse(
@field:Json(name = "brand")
val brandName: String,
@field:Json(name = "phone_name")
val name: String,
@field:Json(name = "phone_name_slug")
val slug: String,
@field:Json(name = "phone_img_url")
val image: String,
@field:Json(name = "specifications")
val specifications: List<PhoneSpecs>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment