What is the significance of object type RestServices.AnyObject in mendix domain model.

0
In the mendix code there is a domain object defined which inherits from "RestServices.AnyObject" in generalization details. Please explain what "RestServices.AnyObject" signifies.
asked
1 answers
0

The AnyObject entity is part of the domain model of the RestServices AppStore module.

If you use that appstore module, you can see the entity in the domain module. When you double-click it, you see its documentation:

"This class exists because java api has no support for List<Any Object>.
So just inherit your object from this object, to make it passable to an Any Object list."

answered