dtolist element

Type: DTOList
Namespace: (default namespace)
XML Schema: ns0.xsd

A wrapper for a wrapping a list of BaseDTO subclasses so that they can be marshalled and unmarshalled via JAXB.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <dtolist> <DTOs> <id>...</id> <dateCreated>...</dateCreated> <dateLastModified>...</dateLastModified> </DTOs> <DTOs> <!--...--> </DTOs> <!--...more "DTOs" elements...--> </dtolist>

Example JSON

{ "DTOs" : [ { "id" : "...", "dateCreated" : ..., "dateLastModified" : ... }, ... ] }