MBook

data class MBook(var bookID: String = "", var userId: String = "", var title: String = "", var author: String = "", val price: Double, var email: String = "", val condition: String, var category: String = "", var mCategory: String = MCategory.Other.toString(), var imageURL: String = "", var description: String = "", val isbn: String, var interestList: List<InterestObject>)

Model class for a book

Constructors

Link copied to clipboard
constructor(bookID: String = "", userId: String = "", title: String = "", author: String = "", price: Double, email: String = "", condition: String, category: String = "", mCategory: String = MCategory.Other.toString(), imageURL: String = "", description: String = "", isbn: String, interestList: List<InterestObject>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

String the author of the book

Link copied to clipboard

String the id of the book

Link copied to clipboard

String the category of the book from Google API

Link copied to clipboard

String the condition of the book

Link copied to clipboard

String the description of the book

Link copied to clipboard

String the email of the user who created the book

Link copied to clipboard

String the url of the image of the book

Link copied to clipboard

List the list of interests for the book

Link copied to clipboard

String the isbn of the book

Link copied to clipboard

MCategory the category of the book from the user

Link copied to clipboard

Double the price of the book

Link copied to clipboard

String the title of the book

Link copied to clipboard

String the id of the user who created the book

Functions

Link copied to clipboard

Creates a map from the MBook object