processorTypesEntity element

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

A serialized representation of this class can be placed in the entity body of a response to the API. This particular entity holds a reference to a list of processor types.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <processorTypesEntity> <revision> <clientId>...</clientId> <version>...</version> </revision> <processorTypes> <description>...</description> <type>...</type> <tags>...</tags> <tags>...</tags> <!--...more "tags" elements...--> </processorTypes> <processorTypes> <!--...--> </processorTypes> <!--...more "processorTypes" elements...--> </processorTypesEntity>

Example JSON

{ "processorTypes" : [ { "description" : "...", "type" : "...", "tags" : [ "...", ... ] }, ... ], "revision" : { "clientId" : "...", "version" : ... } }