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