TNEntityParkingType

@objc
public enum TNEntityParkingType : Int, Codable, RawRepresentable

Reflects the parking type of the charge point’s location. May be used for user information. Refer https://github.com/ocpi/ocpi/blob/master/mod_locations.asciidoc#mod_locations_parkingtype_enum

  • Location on a parking facility/rest area along a motorway, freeway, interstate, highway etc.

    Declaration

    Swift

    case alongMotorway
  • Multistorey car park.

    Declaration

    Swift

    case parkingGarage
  • A cleared area that is intended for parking vehicles, i.e. at super markets, bars, etc

    Declaration

    Swift

    case parkingLot
  • Location is on the driveway of a house/building.

    Declaration

    Swift

    case onDriveway
  • Parking in public space along a street.

    Declaration

    Swift

    case onStreet
  • Multistorey car park, mainly underground.

    Declaration

    Swift

    case undergroundGarage
  • Undocumented

    Declaration

    Swift

    case unknown
  • Declaration

    Swift

    public typealias RawValue = String
  • Declaration

    Swift

    public var rawValue: RawValue { get }
  • Declaration

    Swift

    public init?(rawValue: RawValue)