SortOrder especifica se os valores dos campos são classificados em ordem crescente ou decrescente.
Valores do enum
SORT_ORDER_ASC: ordem crescente.
SORT_ORDER_DESC: ordem decrescente.
enum SortOrder {
SORT_ORDER_ASC = 0;
SORT_ORDER_DESC = 1;
}