DataSortColumn
A complex data type that describes a sorted data column.
Schema
<xsd:complexType name="DataSortColumn">
<xsd:sequence>
<xsd:element name="ColumnName" type="xsd:string"/>
<xsd:element name="SortDirection">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="ASC"/>
<xsd:enumeration value="DES"/> </xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
Elements
ColumnName
The name of the sorted column.
SortDirection

The direction of the sort. Valid values are:

ASC - Ascending

DES - Descending