backbase-openapi-tools
backbase-openapi-tools copied to clipboard
Adding nullable for object type changes generated code to JsonNullable
Without nullable object type boat is generating java Object type, which is desired behaviour as in our case field should be any Object(including possibility of primitives like boolean, int, etc.). However nullable added to spec, then JsonNullable is generated in java code as type of field, which breaks on parsing primitives.