Class: OpenEHR::RM::Common::Generic::AuditDetails

Inherits:
Object
  • Object
show all
Defined in:
lib/openehr/rm/common/generic.rb

Direct Known Subclasses

Attestation

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = { }) ⇒ AuditDetails

Returns a new instance of AuditDetails.



14
15
16
17
18
19
20
# File 'lib/openehr/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_typeObject

Returns the value of attribute change_type.



11
12
13
# File 'lib/openehr/rm/common/generic.rb', line 11

def change_type
  @change_type
end

#committerObject

Returns the value of attribute committer.



11
12
13
# File 'lib/openehr/rm/common/generic.rb', line 11

def committer
  @committer
end

#descriptionObject

Returns the value of attribute description.



12
13
14
# File 'lib/openehr/rm/common/generic.rb', line 12

def description
  @description
end

#system_idObject

Returns the value of attribute system_id.



11
12
13
# File 'lib/openehr/rm/common/generic.rb', line 11

def system_id
  @system_id
end

#time_committedObject

Returns the value of attribute time_committed.



11
12
13
# File 'lib/openehr/rm/common/generic.rb', line 11

def time_committed
  @time_committed
end