Class: OpenEHR::RM::Common::Generic::AuditDetails
- Inherits:
-
Object
- Object
- OpenEHR::RM::Common::Generic::AuditDetails
- Defined in:
- lib/open_ehr/rm/common/generic.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#change_type ⇒ Object
Returns the value of attribute change_type.
-
#committer ⇒ Object
Returns the value of attribute committer.
-
#description ⇒ Object
Returns the value of attribute description.
-
#system_id ⇒ Object
Returns the value of attribute system_id.
-
#time_committed ⇒ Object
Returns the value of attribute time_committed.
Instance Method Summary collapse
-
#initialize(args = { }) ⇒ AuditDetails
constructor
A new instance of AuditDetails.
Constructor Details
#initialize(args = { }) ⇒ AuditDetails
Returns a new instance of AuditDetails.
14 15 16 17 18 19 20 |
# File 'lib/open_ehr/rm/common/generic.rb', line 14 def initialize(args = { }) self.system_id = args[:system_id] self.committer = args[:committer] self.time_committed = args[:time_committed] self.change_type = args[:change_type] self.description = args[:description] end |
Instance Attribute Details
#change_type ⇒ Object
Returns the value of attribute change_type.
11 12 13 |
# File 'lib/open_ehr/rm/common/generic.rb', line 11 def change_type @change_type end |
#committer ⇒ Object
Returns the value of attribute committer.
11 12 13 |
# File 'lib/open_ehr/rm/common/generic.rb', line 11 def committer @committer end |
#description ⇒ Object
Returns the value of attribute description.
12 13 14 |
# File 'lib/open_ehr/rm/common/generic.rb', line 12 def description @description end |
#system_id ⇒ Object
Returns the value of attribute system_id.
11 12 13 |
# File 'lib/open_ehr/rm/common/generic.rb', line 11 def system_id @system_id end |
#time_committed ⇒ Object
Returns the value of attribute time_committed.
11 12 13 |
# File 'lib/open_ehr/rm/common/generic.rb', line 11 def time_committed @time_committed end |