Package-level declarations

Types

Link copied to clipboard
data class InterestObject(val interestId: String, val userDisplayName: String, var buyerConfirm: Boolean, var sellerConfirm: Boolean)

Model class for an InterestObject, created when a user is interested in a book listing

Link copied to clipboard
data class ListingSubmissionData(val isbn: String, val price: String, val category: String, val condition: String, val isbnValid: Boolean, val priceValid: Boolean, val categoryValid: Boolean, val conditionValid: Boolean)

Data class that captures user information for listing submission

Link copied to clipboard
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

Link copied to clipboard
data class MCategory(categoryName: String)

This class represents a category of a book.

Link copied to clipboard
data class MCondition(condition: String, description: String)

This class represents the condition of a book.

Link copied to clipboard
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

Link copied to clipboard
Link copied to clipboard

Enum class that represents the type of selection that a list can have.

Link copied to clipboard
data class ToggleButtonOption(val text: String, val iconRes: Int?)

Data class that represents a toggle button option.