Kind

public enum Kind : String, CaseIterable

Privacy of a collection (and it’s items) are determined by the Kind

  • A collection (and it’s items) is only accessible by the owner and team members

    Declaration

    Swift

    case `private`
  • A collection (and it’s items) is available through a direct link, but is not indexed for public search

    Declaration

    Swift

    case `public`
  • A collection (and it’s items) is publicly available and indexed for search

    Declaration

    Swift

    case global