<PackageReference Include="Relativity.Services.DataContracts.SDK" Version="13.2.8" />

Relativity.Services.DashboardObject.DeleteStatus

public class DeleteStatus
Represents a status of Delete action of a given Dashboard for a given context.
public bool CanDelete { get; }

Gets or sets a Boolean value indicating whether the user has permissions to delete a given dashboard.

public bool CanDeleteObjectDependencies { get; }

Gets or sets a Boolean value indicating whether the user has permissions to delete object dependencies.

public bool HasLinkedObjects { get; }

Gets a Boolean value indicating whether a given Dashboard has any dependant objects.

public bool HasRestrictedLinkedObjects { get; }

Gets a Boolean value indicating whether a given Dashboard has any dependant objects that user is not authorized to modify.

Gets or sets a list of objects that are dependant on a given Dashboard.

public DeleteStatus(bool canDelete, bool canDeleteObjectDependencies, IEnumerable<ObjectDependency> linkedObjects)

Constructor.