binderChildren Data Type

Information about a binder's children. Will contain either a list of children error information, but not both.

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs description
binder_id long element 0/1 The ID of the parent binder.
children searchResultList element 0/1 The binder's children. A list of BinderBrief and FileProperties objects. Only applies if no occurred retrieving the children.
error errorInfo element 0/1 An error that occurred retrieving the children.

Example

<binderChildren>
  <binder_id>...</binder_id>
  <children>
    <first>0</first>
    <count>...</count>
    <total>...</total>
    <next>...</next>
    <items>
      <item>...</item>
    </items>
  </children>
  <error>
    <code>...</code>
    <message>...</message>
    <data>...</data>
  </error>
</binderChildren>