Class: FHIR::SubstanceSpecificationStructureRepresentation

Inherits:
BackboneElement show all
Includes:
Mongoid::Document
Defined in:
app/models/fhir/substance_specification_structure_representation.rb

Overview

fhir/substance_specification_structure_representation.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.transform_json(json_hash, target = SubstanceSpecificationStructureRepresentation.new) ⇒ Object



30
31
32
33
34
35
36
37
38
# File 'app/models/fhir/substance_specification_structure_representation.rb', line 30

def self.transform_json(json_hash, target = SubstanceSpecificationStructureRepresentation.new)

  result = self.superclass.transform_json(json_hash, target)
  result['type'] = CodeableConcept.transform_json(json_hash['type']) unless json_hash['type'].nil?
  result['representation'] = PrimitiveString.transform_json(json_hash['representation'], json_hash['_representation']) unless json_hash['representation'].nil?
  result['attachment'] = Attachment.transform_json(json_hash['attachment']) unless json_hash['attachment'].nil?

  result
end

Instance Method Details

#as_json(*args) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'app/models/fhir/substance_specification_structure_representation.rb', line 9

def as_json(*args)
  result = super      
  unless self.type.nil? 
    result['type'] = self.type.as_json(*args)
  end
  unless self.representation.nil? 
    result['representation'] = self.representation.value
    serialized = Extension.serializePrimitiveExtension(self.representation)            
    result['_representation'] = serialized unless serialized.nil?
  end
  unless self.attachment.nil? 
    result['attachment'] = self.attachment.as_json(*args)
  end
  result.delete('id')
  unless self.fhirId.nil?
    result['id'] = self.fhirId
    result.delete('fhirId')
  end  
  result
end