Example
Input
{
"timestamp": 1415746800000
}
Output
case class RootInterface(
timestamp: Int
)
Scala REPL (2.10.6)
scala> case class RootInterface(
| timestamp: Int
| )
defined class RootInterface
scala> val x = RootInterface(timestamp = 1415746800000)
<console>:1: error: integer number too large
val x = RootInterface(timestamp = 1415746800000)
^
scala>