Skip to content

Instantly share code, notes, and snippets.

@hissain
Created April 1, 2020 22:15
Show Gist options
  • Save hissain/8a939d3cb759d128199790214f615e84 to your computer and use it in GitHub Desktop.
Save hissain/8a939d3cb759d128199790214f615e84 to your computer and use it in GitHub Desktop.
Sample user data model
data class UserInfo (
@SerializedName("user_id") val userId: Int?,
@SerializedName("user_name") val userName: String?,
@SerializedName("user_email") val userEmail: String?,
@SerializedName("user_age") val userAge: String?,
@SerializedName("user_uid") val userUid: String?
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment