class Google::Apis::HealthcareV1::Hl7SchemaConfig
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.
Attributes
message_schema_configs[RW]
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` @return [Hash<String,Google::Apis::HealthcareV1::SchemaGroup>]
version[RW]
Each VersionSource
is tested and only if they all match is the schema used for the message. Corresponds to the JSON property `version` @return [Array<Google::Apis::HealthcareV1::VersionSource>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/healthcare_v1/classes.rb, line 2072 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/healthcare_v1/classes.rb, line 2077 def update!(**args) @message_schema_configs = args[:message_schema_configs] if args.key?(:message_schema_configs) @version = args[:version] if args.key?(:version) end