TNEntityParkingRestriction
@objc
public enum TNEntityParkingRestriction : Int, Codable, RawRepresentable
This value, if provided, represents the restriction to the parking spot for different purposes.
-
Reserved parking spot for electric vehicles.
Declaration
Swift
case evOnly
-
Parking is only allowed while plugged in (charging).
Declaration
Swift
case plugged
-
Reserved parking spot for disabled people with valid ID.
Declaration
Swift
case disabled
-
Parking spot for customers/guests only, for example in case of a hotel or shop.
Declaration
Swift
case customers
-
Parking spot only suitable for (electric) motorcycles or scooters.
Declaration
Swift
case motorcycles
-
Undocumented
Declaration
Swift
case none
-
Declaration
Swift
public typealias RawValue = String
-
Declaration
Swift
public var rawValue: RawValue { get }
-
Declaration
Swift
public init?(rawValue: RawValue)