TNEntityConnectorFormat

@objc
public enum TNEntityConnectorFormat : Int, Codable, RawRepresentable

The format of the connector, whether it is a socket or a plug.

  • The connector is a socket; the EV user needs to bring a fitting plug.

    Declaration

    Swift

    case socket
  • The connector is an attached cable; the EV users car needs to have a fitting inlet.

    Declaration

    Swift

    case cable
  • Undocumented

    Declaration

    Swift

    case none
  • Declaration

    Swift

    public typealias RawValue = String
  • Declaration

    Swift

    public var rawValue: RawValue { get }
  • Declaration

    Swift

    public init?(rawValue: RawValue)