ObjectSetResponse Element

System.Object
  ObjectResponseType
    ObjectSetResponse
Client Declaration
  public class ObjectSetResponse
Represents a collection of Content Engine objects returned in the output of a GetObjects operation.

Element Structure

Elements
  • ObjectSetType ObjectSet: [response] Required element specifying an object collection.
Attributes
  • CollectionType collectionType: [response] Optional expression specifying the type of the object collection: enumeration (a set collection of independent objects) or list (a list collection of dependent objects).
Attributes Specific to .NET Clients
  • Boolean collectionTypeSpecified: Optional expression specifying whether collectionType has a value (true) or not (false).

Base Element Inheritance

Attributes
  • String id: [response] Optional identifying string reflected in the corresponding ObjectRequestType element of the GetObjects request, allowing a request and response element to be correlated.

XML Schema

<xsd:complexType name="ObjectSetResponse">
   <xsd:complexContent>
      <xsd:extension base="ObjectResponseType">
         <xsd:sequence>
            <xsd:element name="ObjectSet" type="ObjectSetType"/>
         </xsd:sequence>
         <xsd:attribute name="collectionType" type="CollectionType"/>
      </xsd:extension>
   </xsd:complexContent>
</xsd:complexType>