Search Results for

    Show / Hide Table of Contents

    Class InferenceRequestDetails

    Details of an inference request.

    Inheritance
    Object
    InferenceRequestDetails
    Namespace: Nvidia.Clara.DicomAdapter.API.Rest
    Assembly: Nvidia.Clara.Dicom.API.dll
    Syntax
    public class InferenceRequestDetails : object
    Remarks

    type> is required.

    PatientID> is required if type is DicomUid.

    studies> is required if type is DicomPatientId.

    accessionNumber> is required if type is AccessionNumber.

    Examples
    {
        ...
        "details" : {
            "type": "DICOM_UID",
            "studies": [ ... ]
        }
        ...
    } or
    
    {
        ...
        "details" : {
            "type": "DICOM_PATIENT_ID",
            "PatientID": "..."
        }
        ...
    } or
    
    {
        ...
        "details" : {
            "type": "ACCESSION_NUMBER",
            "accessionNumber": [ ... ]
        }
        ...
    }

    Properties

    | Improve this Doc View Source

    AccessionNumber

    Gets or sets Access Number that is used to query the data source. Used when Type is AccessionNumber.

    Declaration
    public IList<string> AccessionNumber { get; set; }
    Property Value
    Type Description
    IList<String>
    | Improve this Doc View Source

    PatientId

    Gets or sets Patient ID that is used to query the data source. Used when Type is DicomPatientId.

    Declaration
    public string PatientId { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    Studies

    Gets or sets the DICOM studies to be retrieved. Used when Type is DicomUid.

    Declaration
    public IList<RequestedStudy> Studies { get; set; }
    Property Value
    Type Description
    IList<RequestedStudy>
    | Improve this Doc View Source

    Type

    Gets or sets the type of the inference request.

    Declaration
    public InferenceRequestType Type { get; set; }
    Property Value
    Type Description
    InferenceRequestType
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2021 NVIDIA Corporation
    NVIDIA Clara™ is a trademark of NVIDIA Corporation.
    Generated by DocFX