I need to process Google Play customer reviews as described in https://developers.google.com/android-publisher/api-ref/reviews and https://developers.google.com/android-publisher/reply-to-reviews.
The documentation shows
"lastModified": {
"seconds": long,
"nanos": integer
},
Example
"lastModified": {
"seconds": "1452114723",
"nanos": 913000000
},
comments[].developerComment.lastModified
- nested object
- The last time * at which this comment was updated.
comments[].developerComment.lastModified.nanos
- integer
comments[].developerComment.lastModified.seconds
- long
Can anyone give me a hint how to convert seconds/nanos to normal date/time?