Encodable

protocol Encodable

Encodable Extension to allow serialization to JSON objects

  • Quickly try to encode to JSON-ed Data

    Declaration

    Swift

    func encodeToData() throws -> Data
  • Quickly try to serialize direcly to JSON objects

    Declaration

    Swift

    func encode() -> [String : Any]?
  • Quickly convert raw Data to json dictionary

    Declaration

    Swift

    func dictionary() throws -> [String : Any]