We have data saved to Algolia from Firestore using Cloud Functions, we’re using Firestore’s Timestamp to store DateTime. And it is currently translated to something like this on Algolia:
“testDate”: {
"_seconds": 1549545176,
"_nanoseconds": 159647000
}
The issue is whenever we tried to deserialized from .NET Client SDK, it failed on deserializing every DateTime object, with json error like this : Newtonsoft.Json.JsonReaderException: ‘Unexpected character encountered while parsing value: {. Path ‘hits[0].testDate’, line 1, position 158.’
Any idea how to solve this issue?