SmartEncodable
public protocol SmartEncodable : Encodable
Undocumented
-
The callback for when mapping is complete
Declaration
Swift
mutating func didFinishMapping()
-
The mapping relationship of decoding keys
Declaration
Swift
static func mappingForKey() -> [SmartKeyTransformer]?
-
The strategy for decoding values
Declaration
Swift
static func mappingForValue() -> [SmartValueTransformer]?
-
Undocumented
Declaration
Swift
init()
-
toDictionary(options:
Extension method) Serializes into a dictionary
Declaration
Swift
public func toDictionary(options: Set<SmartEncodingOption>? = nil) -> [String : Any]?
-
toJSONString(options:
Extension methodprettyPrint: ) Serializes into a JSON string
Declaration
Swift
public func toJSONString(options: Set<SmartEncodingOption>? = nil, prettyPrint: Bool = false) -> String?