User

data class User(id: String, fullName: String?, email: String?) : Parcelable

Data class that represents the current logged user

Constructors

User
Link copied to clipboard
fun User(id: String, fullName: String?, email: String?)

Functions

describeContents
Link copied to clipboard
abstract fun describeContents(): Int
writeToParcel
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

email
Link copied to clipboard
val email: String?

Users email address

fullName
Link copied to clipboard
val fullName: String?

Users first name

id
Link copied to clipboard
val id: String