It's possible to generate client code so that model's class names have full namespaces as prefix?
That should avoid same class name conflicts.
Example
com.foo.MyClass
and
it.foo.MyClass
Up to now what I got is MyClass and MyClass2 that's not so much meaningful.
Should be better to have, in case of name collision, ComFooMyClass and ItFooMyClass.