12345678910111213141516171819 |
- package com.vpn.fastestvpnservice.beans
- import com.google.gson.annotations.SerializedName
- data class User(
- @SerializedName("firstname") var firstname: String? = null,
- @SerializedName("lastname") val lastname: String? = null,
- @SerializedName("email") val email: String? = null,
- @SerializedName("address") val address: String? = null,
- @SerializedName("city") val city: String? = null,
- @SerializedName("state") val state: String? = null,
- @SerializedName("countrycode") val countrycode: Any? = null,
- @SerializedName("phonenumber") val phonenumber: String? = null,
- @SerializedName("countryname") val countryname: Any? = null,
- @SerializedName("uniqueid") val uniqueid: String? = null,
- @SerializedName("subscription") val subscription: Boolean = false
- )
|