Class FhirResource
Represents a FHIR resource to be retrieved.
Namespace: Monai.Deploy.InformaticsGateway.Api.Rest
Assembly: Monai.Deploy.InformaticsGateway.Api.dll
Syntax
public class FhirResource
Examples
{
"resourceType": "Patient",
"id": "3d2e37f0-c6bf-4479-bba8-3ca86cbb8a58"
}
Properties
| Improve this Doc View SourceId
Gets or sets the ID of the resource to be retrieved.
Declaration
[JsonPropertyName("id")]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
String |
IsRetrieved
Internal use only! Gets or sets whether or not resource has been retrieved or not.
Declaration
[JsonPropertyName("isRetrieved")]
public bool IsRetrieved { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Type
Gets or set the type of FHIR resource. E.g. Pateitn, Observation.
Declaration
[JsonPropertyName("resourceType")]
public string Type { get; set; }
Property Value
Type | Description |
---|---|
String |