Table of Contents

Class InferenceRequestMetadata

Namespace
Monai.Deploy.InformaticsGateway.Api.Rest
Assembly
Monai.Deploy.InformaticsGateway.Api.dll

Represents the metadata associated with an inference request.

public class InferenceRequestMetadata
Inheritance
InferenceRequestMetadata

Examples

{
    ...
    "inputMetadata" : {
        "details" : { ... },
        "inputs": [ ... ]
    }
    ...
}

Remarks

details> is required.

Properties

Details

Gets or sets the details of an inference request.

[JsonPropertyName("details")]
public InferenceRequestDetails? Details { get; set; }

Property Value

InferenceRequestDetails

Inputs

Gets or sets an array of inference request details. Note: this is an extension to the ACR specs to enable multiple input data types.

[JsonPropertyName("inputs")]
public IList<InferenceRequestDetails>? Inputs { get; set; }

Property Value

IList<InferenceRequestDetails>