Direction
public enum Direction : String, Codable
Options for defining the direction of the sort order.
-
Indicates that values should be sorted by lowest to highest.
Declaration
Swift
case ascending = "asc" -
Indicates that values should be sorted by highest to lowest.
Declaration
Swift
case descending = "desc"
View on GitHub
Direction Enumeration Reference