Reservation

data class Reservation(var id: Int? = null, var index: Int? = null, var date: String? = null, var availableQuantity: Int? = null, var bookableStatus: BookableType? = null) : Parcelable

Constructors

Link copied to clipboard
constructor(id: Int? = null, index: Int? = null, date: String? = null, availableQuantity: Int? = null, bookableStatus: BookableType? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
var date: String?
Link copied to clipboard
var id: Int?
Link copied to clipboard
var index: Int?

Inherited functions

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