MUser

data class MUser(val id: String?, val userId: String, val displayName: String, val firstName: String, val lastName: String, val email: String, val bookListings: List<String>, val savedBooks: List<String>)

A model for the User

Parameters

id

String? the firebase ID of the user

userId

String the ID of the user

displayName

String the display name of the user

firstName

String the first name of the user

lastName

String the last name of the user

email

String the email of the user

bookListings

List the list of book listings of the user

savedBooks

List the list of saved books of the user

Constructors

Link copied to clipboard
constructor(id: String?, userId: String, displayName: String, firstName: String, lastName: String, email: String, bookListings: List<String>, savedBooks: List<String>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val id: String?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

Returns a map of the user