SortBy

public enum SortBy : String

Sorting methods for child items. Note: This variable is maintained by the Dropmark API, and may differ from local sorting methods.

  • Sort by the date the collection was created

    Declaration

    Swift

    case createdAt = "created_at"
  • Sort by the date the collection was last updated

    Declaration

    Swift

    case updatedAt = "updated_at"
  • Sort alphabetically by name

    Declaration

    Swift

    case name
  • Sort by the kind type

    Declaration

    Swift

    case type
  • Sort by the number of items contained by the collection

    Declaration

    Swift

    case size
  • Sort by the number of reactions contained in the collection

    Declaration

    Swift

    case reactions
  • Manual sorting

    Declaration

    Swift

    case null