1stdClass 2======== 3 4The serializer offers support for serializing ``stdClass`` objects, however the use of 5``stdClass`` objects is discouraged. 6 7The current implementation serializes all the properties of a ``stdClass`` object in 8the order they appear. 9 10There are many known limitations when dealing with ``stdClass`` objects. 11More in detail, it is not possible to: 12 13- change serialization order of properties 14- apply per-property exclusion policies 15- specify any extra serialization information for properties that are part of the ``stdClass`` object, as serialization name, type, xml structure and so on 16- deserialize data into ``stdClass`` objects 17