Class: Google::Apis::HealthcareV1beta1::Hl7SchemaConfig
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::Hl7SchemaConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1beta1/classes.rb,
lib/google/apis/healthcare_v1beta1/representations.rb,
lib/google/apis/healthcare_v1beta1/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
-
#message_schema_configs ⇒ Hash<String,Google::Apis::HealthcareV1beta1::SchemaGroup>
Map from each HL7v2 message type and trigger event pair, such as ADT_A04, to its schema configuration root group.
-
#version ⇒ Array<Google::Apis::HealthcareV1beta1::VersionSource>
Each VersionSource is tested and only if they all match is the schema used for the message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Hl7SchemaConfig
constructor
A new instance of Hl7SchemaConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Hl7SchemaConfig
Returns a new instance of Hl7SchemaConfig.
4247 4248 4249 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 4247 def initialize(**args) update!(**args) end |
Instance Attribute Details
#message_schema_configs ⇒ Hash<String,Google::Apis::HealthcareV1beta1::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
4239 4240 4241 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 4239 def @message_schema_configs end |
#version ⇒ Array<Google::Apis::HealthcareV1beta1::VersionSource>
Each VersionSource is tested and only if they all match is the schema used for
the message.
Corresponds to the JSON property version
4245 4246 4247 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 4245 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4252 4253 4254 4255 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 4252 def update!(**args) @message_schema_configs = args[:message_schema_configs] if args.key?(:message_schema_configs) @version = args[:version] if args.key?(:version) end |