Class: Google::Apis::HealthcareV1beta1::VersionSource
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::VersionSource
- 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
Describes a selector for extracting and matching an MSH field to a value.
Instance Attribute Summary collapse
-
#msh_field ⇒ String
The field to extract from the MSH segment.
-
#value ⇒ String
The value to match with the field.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VersionSource
constructor
A new instance of VersionSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VersionSource
Returns a new instance of VersionSource.
7467 7468 7469 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7467 def initialize(**args) update!(**args) end |
Instance Attribute Details
#msh_field ⇒ String
The field to extract from the MSH segment. For example, "3.1" or "18[1].1".
Corresponds to the JSON property mshField
7460 7461 7462 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7460 def msh_field @msh_field end |
#value ⇒ String
The value to match with the field. For example, "My Application Name" or "2.3".
Corresponds to the JSON property value
7465 7466 7467 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7465 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7472 7473 7474 7475 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 7472 def update!(**args) @msh_field = args[:msh_field] if args.key?(:msh_field) @value = args[:value] if args.key?(:value) end |