class HL7::Message::Segment::PID

Public Instance Methods

country_code() click to toggle source
# File lib/segments/pid.rb, line 57
def country_code
  warn "DEPRECATION WARNING: PID-12 is defined as 'county_code'; "+
       "the 'country_code' alias is retained for backwards compatibility only."
  county_code
end
country_code=(country_code) click to toggle source
# File lib/segments/pid.rb, line 63
def country_code=(country_code)
  warn "DEPRECATION WARNING: PID-12 is defined as 'county_code'; "+
       "the 'country_code' alias is retained for backwards compatibility only."
  self.county_code = country_code
end