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.



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

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.



9
10
11
# File 'lib/openehr/rm/common/generic.rb', line 9

def change_type
  @change_type
end

#committerObject

Returns the value of attribute committer.



9
10
11
# File 'lib/openehr/rm/common/generic.rb', line 9

def committer
  @committer
end

#descriptionObject

Returns the value of attribute description.



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

def description
  @description
end

#system_idObject

Returns the value of attribute system_id.



9
10
11
# File 'lib/openehr/rm/common/generic.rb', line 9

def system_id
  @system_id
end

#time_committedObject

Returns the value of attribute time_committed.



9
10
11
# File 'lib/openehr/rm/common/generic.rb', line 9

def time_committed
  @time_committed
end