class Google::Apis::HealthcareV1::VersionSource

Describes a selector for extracting and matching an MSH field to a value.

Attributes

msh_field[RW]

The field to extract from the MSH segment. For example, “3.1” or “18.1”. Corresponds to the JSON property `mshField` @return [String]

value[RW]

The value to match with the field. For example, “My Application Name” or “2.3”. Corresponds to the JSON property `value` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/healthcare_v1/classes.rb, line 4172
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 4177
def update!(**args)
  @msh_field = args[:msh_field] if args.key?(:msh_field)
  @value = args[:value] if args.key?(:value)
end