ValueTransformable

public protocol ValueTransformable

Undocumented

  • Undocumented

    Declaration

    Swift

    associatedtype Object
  • Undocumented

    Declaration

    Swift

    associatedtype JSON
  • transform from ’json‘ to ’object‘

    Declaration

    Swift

    func transformFromJSON(_ value: Any) -> Object?
  • transform to ‘json’ from ‘object’

    Declaration

    Swift

    func transformToJSON(_ value: Object) -> JSON?