5.2 API Complex Data Constructions

The following complex data constructions are used by the Thru REST Services API:

•	*Collection<T> *:  A collection of objects of the same type. 

The following XML formatting is used to pass any collection between client and server:

Sample XML
<FileNames>
<String>*Name #1*</String>
<String>*Another Name*</String>
</FileNames>

Corresponding Object
Collection<string> FileNames;