VKIDUser

class VKIDUser(val firstName: String, val lastName: String, val phone: String? = null, val photo50: String? = null, val photo100: String? = null, val photo200: String? = null, val email: String? = null) : Parcelable

Represents a user in the VK ID.

Constructors

Link copied to clipboard
constructor(firstName: String, lastName: String, phone: String? = null, photo50: String? = null, photo100: String? = null, photo200: String? = null, email: String? = null)

Properties

Link copied to clipboard
val email: String? = null

The email of the user, nullable.

Link copied to clipboard

The first name of the user.

Link copied to clipboard

The last name of the user.

Link copied to clipboard
val phone: String? = null

The phone number of the user, nullable.

Link copied to clipboard
val photo100: String? = null

URL to the user's 100px photo, nullable.

Link copied to clipboard
val photo200: String? = null

URL to the user's 200px photo, nullable.

Link copied to clipboard
val photo50: String? = null

URL to the user's 50px photo, nullable.