Protocols

The following protocols are available globally.

  • JSONDecodable child protocol that allows the user to define a cust dateFormatter. There is no default dateFormatter defined here so any object conforming to the protocol will need to add this

    See more

    Declaration

    Swift

    public protocol JSONCustomDateFormatterDecodable: JSONDecodable
  • JSONEncodable child protocol that allows the user to define a cust dateFormatter. There is no default dateFormatter defined here so any object conforming to the protocol will need to add this

    See more

    Declaration

    Swift

    public protocol JSONCustomDateFormatterEncodable: JSONEncodable
  • JSONDecodable protocol with an init for JSON. Conforms to Decodable protocol

    See more

    Declaration

    Swift

    public protocol JSONDecodable: Decodable
  • JSONEncodable protocol for easily getting a JSON object from a conforming JSONCodable object. Conforms to Encodable protocol

    See more

    Declaration

    Swift

    public protocol JSONEncodable: Encodable