API
FHIRClientJSON.Authentication
FHIRClientJSON.BaseURL
FHIRClientJSON.BaseURL
FHIRClientJSON.Client
FHIRClientJSON.request
FHIRClientJSON.request_raw
FHIRClientJSON.Authentication
— TypeSupertype of the various authentication types.
Summary
abstract type Authentication <: Any
FHIRClientJSON.BaseURL
— TypeThe base URL for a FHIR server.
The base URL is also called the "Service Root URL"
Summary
struct BaseURL <: Any
Fields
- uri :: HTTP.URIs.URI
FHIRClientJSON.BaseURL
— MethodBaseURL(base_url::AbstractString)
Construct a BaseURL
object given the base URL.
The base URL is also called the "Service Root URL"
FHIRClientJSON.Client
— TypeA FHIR client.
Summary
struct Client{A <: Authentication} <: Any
Fields
- base_url :: BaseURL
- auth :: A
FHIRClientJSON.request
— Methodrequest(client, verb, path; query, body, headers)
request(client, verb, path; query, headers)
request(client, verb, path; body, headers)
request(client, verb, path; headers)
FHIRClientJSON.request_raw
— Methodrequest_raw(client, verb, path; query, body, headers)
request_raw(client, verb, path; query, headers)
request_raw(client, verb, path; body, headers)
request_raw(client, verb, path; headers)