Station

class Station(    val isOperational: Boolean,     val address: String,     val location: LatLng,     val name: String,     val number: Int,     val imageUrl: String?)

A model class representing a single charging station mapped to the database entries.

Constructors

Link copied to clipboard
fun Station(    isOperational: Boolean,     address: String,     location: LatLng,     name: String,     number: Int,     imageUrl: String?)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val address: String

The physical address of the station.

Link copied to clipboard
val imageUrl: String?

The relative url address of the image of the station.

Link copied to clipboard
val isOperational: Boolean

True if station is currently available for regular users.

Link copied to clipboard
val location: LatLng

The geographical location of the station, represented in degrees.

Link copied to clipboard
val name: String

A user-friendly name for the station, used for easy identification.

Link copied to clipboard
val number: Int

The serial number of the station used for internal configurations and maintenance.