BlogPost.xml 743 B

12345678910111213
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <serializer>
  3. <class name="JMS\Serializer\Tests\Fixtures\BlogPost" xml-root-name="blog-post">
  4. <property name="title" type="string" groups="comments,post"/>
  5. <property name="createdAt" xml-attribute="true" type="DateTime"/>
  6. <property name="published" type="boolean" serialized-name="is_published" xml-attribute="true" groups="post" />
  7. <property name="comments" groups="comments">
  8. <type><![CDATA[ArrayCollection<JMS\Serializer\Tests\Fixtures\Comment>]]></type>
  9. <xml-list inline="true" entry-name="comment" />
  10. </property>
  11. <property name="author" groups="post" type="JMS\Serializer\Tests\Fixtures\Author" />
  12. </class>
  13. </serializer>