<PackageReference Include="Relativity.Server.Testing.Framework.Api.SDK" Version="10.3.0" />

IImagingSetService

public interface IImagingSetService
Represents the Imaging Set API service.
ImagingSet Create(int workspaceId, ImagingSetRequest imagingSetRequest)

Creates imaging set based on provided [ImagingSetRequest](https://relativitydev.github.io/relativity.testing.framework/api/Relativity.Testing.Framework.Models.ImagingSetRequest.html) properties.

void Delete(int workspaceId, int imagingSetId)

Deletes Imaging Set.

ImagingSet Get(int workspaceId, int imagingSetId)

Gets the imaging set by specified imagingSetId.

ImagingSetDetailedStatus GetStatus(int workspaceId, int imagingSetId)

Gets the status of an imaging set.

void Hide(int workspaceId, int imagingSetId)

Hides Imaging Set. Can be used to prevent users from viewing images that need to undergo a quality control review.

void Release(int workspaceId, int imagingSetId)

Releases hidden images. Used to make images available to reviewers after a quality control review has been completed on hidden images.

int Update(int workspaceId, int imagingSetId, ImagingSetRequest imagingSetRequest)

Updates Imaging Set by given imagingSetRequest.