I am retrieving data of certain events from an API. And I came across this super strange 8 digit number (some sort of timestamp most probably) but I can not make any sense of what those numbers are. The API documentation wasn't kind enough to tell details of this particular duration
field.
Here is the portion of API response:
"created_date": "2021-10-06T15:28:56.104897",
"custom_event_name": null,
"dev_fee_payment_event": null,
"duration": "15541075",
"ending_price": "2690000000000000000",
"event_type": "created",
What I have tested so far, and have concluded is that it CAN NOT be the:
- UNIX epoch
- Number of seconds
- Number of milli/micro seconds.
This is an example full json response. And this is the API documentation link
Any idea what this duration
field could possibly signify?