UpdateFolderPolicyError

public enum UpdateFolderPolicyError : CustomStringConvertible, JSONRepresentable

The UpdateFolderPolicyError union

  • An unspecified error.

    Declaration

    Swift

    case accessError(Sharing.SharedFolderAccessError)
  • memberPolicy in UpdateFolderPolicyArg was set even though user is not on a team.

    Declaration

    Swift

    case notOnTeam
  • Team policy is more restrictive than memberPolicy in ShareFolderArg.

    Declaration

    Swift

    case teamPolicyDisallowsMemberPolicy
  • The current account is not allowed to select the specified sharedLinkPolicy in ShareFolderArg.

    Declaration

    Swift

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

    Declaration

    Swift

    case noPermission
  • This action cannot be performed on a team shared folder.

    Declaration

    Swift

    case teamFolder
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }