more details #1490
To reduce the amount of generated code we can remove the object parameter from the field deserializer as the deserializer should be able to capture "this". The abstractions, http and json serialization library will need to be updated too.
"isInline" => lambda {|o, n| o.is_inline = n.get_boolean_value() }
becomes
"isInline" => lambda {|n| @is_inline = n.get_boolean_value() }