Class RequestOutputDataResource
- Namespace
- Monai.Deploy.InformaticsGateway.Api.Rest
- Assembly
- Monai.Deploy.InformaticsGateway.Api.dll
Represents an output/export resource (data source).
public class RequestOutputDataResource
- Inheritance
-
RequestOutputDataResource
Examples
{
...
"outputResource" : [
{
"interface": "DICOMweb",
"connectionDetails" : {
"operations": [ "STORE" ],
"uri": "http://host:port/dicomweb/",
"authID": "dXNlcm5hbWU6cGFzc3dvcmQ=",
"authType": "Basic"
}
}
]
...
}
Properties
ConnectionDetails
Gets or sets connection details of a data source.
[JsonPropertyName("connectionDetails")]
public DicomWebConnectionDetails ConnectionDetails { get; set; }
Property Value
Interface
Gets or sets the type of interface or a data source.
[JsonPropertyName("interface")]
public InputInterfaceType Interface { get; set; }