Currently I'm implementing a feature and using an external API. The API returns the following structure
{"StartDate"=>"/Date(1532563200000+0000)/", "ExpirationDate"=>"/Date(1564099200000+0000)/"}
I'm not sure how to parse StartDate
and ExpirationDate
to get their values in Ruby Time Format.
Any feedback welcome.