Entrance

public struct Entrance : Decodable

Entrance information

  • Division

    Declaration

    Swift

    public let division: String
  • Line or branch

    Declaration

    Swift

    public let line: String
  • Station name

    Declaration

    Swift

    public let stationName: String
  • Station location

    Declaration

    Swift

    public var stationLocation: CLLocation { get }
  • Routes

    Declaration

    Swift

    public var routes: [String] { get }
  • Enum type of entrance

    See more

    Declaration

    Swift

    public enum Type : CustomStringConvertible
  • Type of entrance

    Throws

    When encountering an unexpectedly parsed type

    Declaration

    Swift

    public func type() throws -> Type

    Return Value

    Type

  • Is an entry

    Declaration

    Swift

    public var entry: Bool { get }
  • Is an Exit Only

    Declaration

    Swift

    public var exitOnly: Bool { get }
  • Has vending machines

    Declaration

    Swift

    public var vending: Bool { get }
  • Enum staffing

    See more

    Declaration

    Swift

    public enum Staffing
  • Staffing

    Throws

    When encountering an unexpectedly parsed staff value

    Declaration

    Swift

    public func staffing() throws -> Staffing

    Return Value

    Staffing

  • Staff hours

    Declaration

    Swift

    public let staffHours: String
  • ada

    ADA compliant

    Declaration

    Swift

    public var ada: Bool { get }
  • ADA compliancy notes

    Declaration

    Swift

    public let adaNotes: String
  • Free crossover

    Declaration

    Swift

    public var freeCrossover: Bool { get }
  • North-south street entrance

    Declaration

    Swift

    public let northSouthStreet: String
  • East-west street entrance

    Declaration

    Swift

    public let eastWestStreet: String
  • Corner entrance

    Declaration

    Swift

    public let corner: String
  • Location

    Declaration

    Swift

    public var location: CLLocation { get }