Pathway

case class Pathway(@CsvName("pathway_id") id: String, @CsvName("from_stop_id") fromStopId: String, @CsvName("to_stop_id") toStopId: String, @CsvName("pathway_mode") pathwayMode: PathwayMode, @CsvName("is_bidirectional") isBidirectional: Boolean, length: Option[Double], @CsvName("traversal_time") traversalTime: Option[Int], @CsvName("stair_count") stairCount: Option[Int], @CsvName("max_slope") maxSlope: Option[Double], @CsvName("min_width") minWidth: Option[Double], @CsvName("signposted_as") signpostedAs: Option[String], @CsvName("reversed_signposted_as") reverseSignpostedAs: Option[String])
Companion:
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product