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 moreDeclaration
Swift
public enum Type : CustomStringConvertible -
Type of entrance
Throws
When encountering an unexpectedly parsed typeDeclaration
Swift
public func type() throws -> TypeReturn 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 moreDeclaration
Swift
public enum Staffing -
Staffing
Throws
When encountering an unexpectedly parsed staff valueDeclaration
Swift
public func staffing() throws -> StaffingReturn Value
Staffing
-
Staff hours
Declaration
Swift
public let staffHours: String -
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 }
View on GitHub
Entrance Structure Reference