Mukesh
10/18/2024, 9:31 AMAny
and I am unable to convert it into Long. Any idea how I can convert the value to Long? the actual object after parsing is of type java.lang.Integer.Stylianos Gakis
10/18/2024, 9:32 AMMukesh
10/18/2024, 9:37 AMbod
10/18/2024, 9:43 AMmapScalarToKotlinLong("BigInt")
If the value can exceed the capacity of a Kotlin Long (64 bits signed) though, you may want to map it to a BigDecimal instead (in which case you can use extra adapters)Mukesh
10/18/2024, 9:44 AMbod
10/18/2024, 9:44 AMMukesh
10/18/2024, 9:46 AM