JSONRawRepresentable

public protocol JSONRawRepresentable: JSONDeserializer, RawRepresentable

Protocol to auto-implement deserialization for RawRepresentable types.

Example:
The following enum automatically implements JSONDeserializer.

 enum Lorem: String, JSONRawRepresentable {
     case ipsum
     case dolor
     case sitAmet
 }