SortColumn
A complex data type that specifies the column on which to sort a query and the sorting order.
Schema
<xsd:complexType name="SortColumn">
<xsd:sequence>
<xsd:element name="Name" type="xsd:string"/>
<xsd:element name="SortOrder">
<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
Name
The name of the column.
SortOrder
The sort order. ASC specifies ascending order and DES specifies descending order. The values are case-sensitive. Specify in upper case.
Differentiate sort order from fetch direction. Sort order specifies the order of the data returned by a query. Fetch direction specifies whether to get the next or previous set of results in a response when the result set exceeds the FetchSize.