Class FhirBundleResponse

java.lang.Object
org.apache.beam.sdk.io.gcp.healthcare.FhirBundleResponse
All Implemented Interfaces:
Serializable

@DefaultSchema(AutoValueSchema.class) public abstract class FhirBundleResponse extends Object implements Serializable
See Also:
  • Constructor Details

    • FhirBundleResponse

      public FhirBundleResponse()
  • Method Details

    • getFhirBundleParameter

      public abstract FhirBundleParameter getFhirBundleParameter()
      FhirBundleParameter represents a FHIR bundle in JSON format to be executed on a FHIR store.
    • getResponse

      public abstract 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 String response)