Class: OpenEHR::RM::Demographic::Contact
- Inherits:
-
Locatable
- Object
- Locatable
- OpenEHR::RM::Demographic::Contact
- Defined in:
- lib/open_ehr/rm/demographic.rb
Instance Attribute Summary collapse
-
#addresses ⇒ Object
Returns the value of attribute addresses.
-
#time_validity ⇒ Object
Returns the value of attribute time_validity.
Instance Method Summary collapse
-
#initialize(args = { }) ⇒ Contact
constructor
A new instance of Contact.
- #purpose ⇒ Object
Constructor Details
#initialize(args = { }) ⇒ Contact
Returns a new instance of Contact.
96 97 98 99 100 |
# File 'lib/open_ehr/rm/demographic.rb', line 96 def initialize(args = { }) super(args) self.addresses = args[:addresses] self.time_validity = args[:time_validity] end |
Instance Attribute Details
#addresses ⇒ Object
Returns the value of attribute addresses.
94 95 96 |
# File 'lib/open_ehr/rm/demographic.rb', line 94 def addresses @addresses end |
#time_validity ⇒ Object
Returns the value of attribute time_validity.
93 94 95 |
# File 'lib/open_ehr/rm/demographic.rb', line 93 def time_validity @time_validity end |
Instance Method Details
#purpose ⇒ Object
102 103 104 |
# File 'lib/open_ehr/rm/demographic.rb', line 102 def purpose return @name end |