Class FhirBundleResponse
- java.lang.Object
-
- org.apache.beam.sdk.io.gcp.healthcare.FhirBundleResponse
-
- All Implemented Interfaces:
java.io.Serializable
@DefaultSchema(org.apache.beam.sdk.schemas.AutoValueSchema.class) public abstract class FhirBundleResponse extends java.lang.Object implements java.io.Serializable- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FhirBundleResponse()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract FhirBundleParametergetFhirBundleParameter()FhirBundleParameter represents a FHIR bundle in JSON format to be executed on a FHIR store.abstract java.lang.StringgetResponse()HTTP response from the FHIR store after attempting to write the Bundle method.static FhirBundleResponseof(FhirBundleParameter fhirBundleParameter, java.lang.String response)
-
-
-
Method Detail
-
getFhirBundleParameter
public abstract FhirBundleParameter getFhirBundleParameter()
FhirBundleParameter represents a FHIR bundle in JSON format to be executed on a FHIR store.
-
getResponse
public abstract java.lang.String getResponse()
HTTP response from the FHIR store after attempting to write the Bundle method. The value varies depending on BATCH vs TRANSACTION bundles.
-
of
@SchemaCreate public static FhirBundleResponse of(FhirBundleParameter fhirBundleParameter, @Nullable java.lang.String response)
-
-