UpdateFolderMemberError

public enum UpdateFolderMemberError : CustomStringConvertible, JSONRepresentable

The UpdateFolderMemberError union

  • An unspecified error.

    Declaration

    Swift

    case accessError(Sharing.SharedFolderAccessError)
  • An unspecified error.

    Declaration

    Swift

    case memberError(Sharing.SharedFolderMemberError)
  • If updating the access type required the member to be added to the shared folder and there was an error when adding the member.

    Declaration

    Swift

    case noExplicitAccess(Sharing.AddFolderMemberError)
  • The current user’s account doesn’t support this action. An example of this is when downgrading a member from editor to viewer. This action can only be performed by users that have upgraded to a Pro or Business plan.

    Declaration

    Swift

    case insufficientPlan
  • The current user does not have permission to perform this action.

    Declaration

    Swift

    case noPermission
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }