The direction in which to sort the results
import com.apideck.unify.models.components.SortDirection;
SortDirection value = SortDirection.ASC;
// Open enum: use .of() to create instances from custom string values
SortDirection custom = SortDirection.of("custom_value");| Name | Value |
|---|---|
ASC |
asc |
DESC |
desc |