tristanhimmelman / AlamofireObjectMapper

An Alamofire extension which converts JSON response data into swift objects using ObjectMapper
MIT License
2.66k stars 474 forks source link

Does it have case insensitive deserialization? #261

Open atalayasa opened 5 years ago

atalayasa commented 5 years ago

Is it possible to give key while deserializing case insensitive because I have base class which handles all the responses that I get from server with following code; item <- map["result"] However, sometimes the result returns as a item <- map["Result"] and it returns nil. Thanks in advance.