Search Results for

    Show / Hide Table of Contents

    Class RequestedStudy

    Details of a DICOM study to be retrieved for an inference request.

    Inheritance
    System.Object
    RequestedStudy
    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 Source

    Series

    Gets or sets a list of DICOM series to be retrieved.

    Declaration
    [JsonPropertyName("series")]
    public IList<RequestedSeries> Series { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IList<RequestedSeries>
    | Improve this Doc View Source

    StudyInstanceUid

    Gets or sets the Study Instance UID to be retrieved.

    Declaration
    [JsonPropertyName("StudyInstanceUID")]
    public string StudyInstanceUid { get; set; }
    Property Value
    Type Description
    System.String
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2022-2023 Project MONAI
    Generated by DocFX