User.kt 794 B

12345678910111213141516171819
  1. package com.vpn.fastestvpnservice.beans
  2. import com.google.gson.annotations.SerializedName
  3. data class User(
  4. @SerializedName("firstname") var firstname: String? = null,
  5. @SerializedName("lastname") val lastname: String? = null,
  6. @SerializedName("email") val email: String? = null,
  7. @SerializedName("address") val address: String? = null,
  8. @SerializedName("city") val city: String? = null,
  9. @SerializedName("state") val state: String? = null,
  10. @SerializedName("countrycode") val countrycode: Any? = null,
  11. @SerializedName("phonenumber") val phonenumber: String? = null,
  12. @SerializedName("countryname") val countryname: Any? = null,
  13. @SerializedName("uniqueid") val uniqueid: String? = null,
  14. @SerializedName("subscription") val subscription: Boolean = false
  15. )