Hi,

I am running into a variation of https://github.com/gin-gonic/gin/issues/1979 difference in my case is that the timestamp is in milliseconds. My approach would be to follow https://github.com/ThomasObenaus/gin/commit/ecddd0378397087c6524e6924e4a8995ee215d2a example and extend the supported format to not only support unix and unixnano but also unixmilli.

Would such a PR be welcome?

Thank you Jens

Comment From: takanuva15

I was just looking whether gin can do a binding directly from milliseconds and I'm confused - was this ever implemented? Or do we need to keep dividing the timestamp by 1000 to fit the "unix" time_format when submitting requests through gin? (It doesn't look like there's any implementation around unixMilli)

UPDATE: They merged my copy of peakji's PR so we should see this supported in gin 1.11 🎉