json - Datatype long - what means high and low -
im working api , @ point im getting json
entry this: cooldown_complete_timestamp_ms: long { low: 600206158, high: 342, unsigned: false}
i dont know how cope data - mean?
that ain't regular json, value of object
can string
, number
, object
, array
, true
, false
or null
. see http://www.json.org/.
the api using must replying derived json.
which api programming against?
i'm guessing api trying emulate/forcing 64-bit integer, similar large_integer
, win32 construct.
the value looking @ 342 * 2^32 + 600206158
, in other words 1469479021390
.
Comments
Post a Comment