Item

data class Item(val id: String, val project: Project, var location: Location, val name: String, var type: ViewType, var isCheckedIn: Boolean = false, val shops: Int? = null, val street: String? = null, val zipCode: String? = null, val city: String? = null, var distance: Float? = null) : Comparable<Item>

Constructors

Link copied to clipboard
constructor(project: Project)
constructor(shop: Shop, project: Project)
constructor(id: String, project: Project, location: Location, name: String, type: ViewType, isCheckedIn: Boolean = false, shops: Int? = null, street: String? = null, zipCode: String? = null, city: String? = null, distance: Float? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val city: String? = null
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
Link copied to clipboard
Link copied to clipboard
val shops: Int? = null
Link copied to clipboard
val street: String? = null
Link copied to clipboard
Link copied to clipboard
val zipCode: String? = null

Functions

Link copied to clipboard
open operator override fun compareTo(other: Item): Int
Link copied to clipboard