Class: Google::Apis::HealthcareV1::Hl7SchemaConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/healthcare_v1/classes.rb,
lib/google/apis/healthcare_v1/representations.rb,
lib/google/apis/healthcare_v1/representations.rb

Overview

Root config message for HL7v2 schema. This contains a schema structure of groups and segments, and filters that determine which messages to apply the schema structure to.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Hl7SchemaConfig

Returns a new instance of Hl7SchemaConfig.



2553
2554
2555
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2553

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#message_schema_configsHash<String,Google::Apis::HealthcareV1::SchemaGroup>

Map from each HL7v2 message type and trigger event pair, such as ADT_A04, to its schema configuration root group. Corresponds to the JSON property messageSchemaConfigs

Returns:



2545
2546
2547
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2545

def message_schema_configs
  @message_schema_configs
end

#versionArray<Google::Apis::HealthcareV1::VersionSource>

Each VersionSource is tested and only if they all match is the schema used for the message. Corresponds to the JSON property version



2551
2552
2553
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2551

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2558
2559
2560
2561
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2558

def update!(**args)
  @message_schema_configs = args[:message_schema_configs] if args.key?(:message_schema_configs)
  @version = args[:version] if args.key?(:version)
end