<xsd:complexType name="TransactionSummaryType">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Reports the total number of features affected by some kind
of write action (i.e, insert, update, delete).
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="totalInserted" type="xsd:nonNegativeInteger" minOccurs="0" />
<xsd:element name="totalUpdated" type="xsd:nonNegativeInteger" minOccurs="0" />
<xsd:element name="totalDeleted" type="xsd:nonNegativeInteger" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
|