TransformOf

open class TransformOf<ObjectType, JSONType>: TransformType

Undocumented

  • Undocumented

    Declaration

    Swift

    public init(fromJSON: @escaping(JSONType?) -> ObjectType?, toJSON: @escaping(ObjectType?) -> JSONType?)
  • Undocumented

    Declaration

    Swift

    open func transformFromJSON(_ value: Any?) -> ObjectType?
  • Undocumented

    Declaration

    Swift

    open func transformToJSON(_ value: ObjectType?) -> JSONType?