Module Values.FHIRServerSource

FHIR server configuration for input data source

Sourcetype nonrec t = {
  1. fhirEndpoint : FHIRServerFhirEndpointString.t;
    (*

    FHIR server endpoint URL for accessing patient data.

    *)
  2. oauthToken : SensitiveNonEmptyString.t option;
    (*

    OAuth token for authenticating with the FHIR server.

    *)
}
Sourceval context_ : string
Sourceval make : ?oauthToken:??? -> fhirEndpoint:FHIRServerFhirEndpointString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FHIRServerFhirEndpointString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t