Kind

public enum Kind : String, CaseIterable

When listing collaborators within a collection, a Kind represents a user’s role within the collection

  • The owner of the collection can add, update, and delete collaborators, as well as alter the collection

    Declaration

    Swift

    case owner
  • The creator originally created the collection, however ownership can be transferred thereafter

    Declaration

    Swift

    case creator
  • A role assigned to users to administer the collection

    Declaration

    Swift

    case manager
  • A read-only member of a collection

    Declaration

    Swift

    case user