Luciano Marisi
Luciano Marisi
Since now [generic subscripts](https://github.com/apple/swift-evolution/blob/master/proposals/0148-generic-subscripts.md) have been introduced I think we should be aiming to move the API to them as this cleaner and simpler. For example: ```swift let jsonDictionary: [String:...
Currently our API to load a JSON dictionary from a filename uses a static function: ```swift let filename = "myjsonfile" let dictionary = try JSONDictionary.from(filename: filename) ``` This could be...
If a key is "some.key" this treated as a keypath made of "some" and "key". Even though it's rare that an API would provide keys with dots it would be...
Does configen support optional values? for example can we declare `String?` in the mapping file. The reasoning for this is that some environments don't need all the properties.
If the response data does need to be parsed the `Model` can `Void` and the `DataResourceType` method can be implemented to always return `.success()`. We should add an example in...