Json
public struct Json<V> : FieldCoderType where V : Decodable, V : Encodable
A FieldCoderType
that implements JSON encoding and decoding of Codable
values.
Important
Due to restrictions ofJSONEncoder
, the value will be contained in single-item array before encoding.
-
Declaration
Swift
public typealias FieldStoredValue = V
-
Declaration
Swift
public static func encodeToStoredData(_ fieldValue: FieldStoredValue?) -> Data?
-
Declaration
Swift
public static func decodeFromStoredData(_ data: Data?) -> FieldStoredValue?