Class RequestedStudy
Details of a DICOM study to be retrieved for an inference request.
Namespace: Monai.Deploy.InformaticsGateway.Api.Rest
Assembly: Monai.Deploy.InformaticsGateway.Api.dll
Syntax
public class RequestedStudy
Remarks
StudyInstanceUid>
is required.
If Series>
is not specified, the entire study is retrieved.
Examples
{
...
"studies" : [
"StudyInstanceUID": "1.2.3.4.555.6666.7777",
"series": [
"SeriesInstanceUID": "1.2.3.4.55.66.77.88",
"instances": [
"SOPInstanceUID": [
"1.2.3.4.5.6.7.8.99.1",
"1.2.3.4.5.6.7.8.99.2",
"1.2.3.4.5.6.7.8.99.3",
...
]
]
]
]
...
}
Properties
| Improve this Doc View SourceSeries
Gets or sets a list of DICOM series to be retrieved.
Declaration
[JsonPropertyName("series")]
public IList<RequestedSeries> Series { get; set; }
Property Value
Type | Description |
---|---|
IList<RequestedSeries> |
StudyInstanceUid
Gets or sets the Study Instance UID to be retrieved.
Declaration
[JsonPropertyName("StudyInstanceUID")]
public string StudyInstanceUid { get; set; }
Property Value
Type | Description |
---|---|
String |