Class: FHIR::StructureMapGroupInput

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

Overview

fhir/structure_map_group_input.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

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



40
41
42
43
44
45
46
47
48
49
# File 'app/models/fhir/structure_map_group_input.rb', line 40

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

  result = self.superclass.transform_json(json_hash, target)
  result['name'] = PrimitiveId.transform_json(json_hash['name'], json_hash['_name']) unless json_hash['name'].nil?
  result['type'] = PrimitiveString.transform_json(json_hash['type'], json_hash['_type']) unless json_hash['type'].nil?
  result['mode'] = StructureMapInputMode.transform_json(json_hash['mode'], json_hash['_mode']) unless json_hash['mode'].nil?
  result['documentation'] = PrimitiveString.transform_json(json_hash['documentation'], json_hash['_documentation']) unless json_hash['documentation'].nil?

  result
end

Instance Method Details

#as_json(*args) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'app/models/fhir/structure_map_group_input.rb', line 10

def as_json(*args)
  result = super      
  unless self.name.nil? 
    result['name'] = self.name.value
    serialized = Extension.serializePrimitiveExtension(self.name)            
    result['_name'] = serialized unless serialized.nil?
  end
  unless self.type.nil? 
    result['type'] = self.type.value
    serialized = Extension.serializePrimitiveExtension(self.type)            
    result['_type'] = serialized unless serialized.nil?
  end
  unless self.mode.nil? 
    result['mode'] = self.mode.value
    serialized = Extension.serializePrimitiveExtension(self.mode)            
    result['_mode'] = serialized unless serialized.nil?
  end
  unless self.documentation.nil? 
    result['documentation'] = self.documentation.value
    serialized = Extension.serializePrimitiveExtension(self.documentation)            
    result['_documentation'] = serialized unless serialized.nil?
  end
  result.delete('id')
  unless self.fhirId.nil?
    result['id'] = self.fhirId
    result.delete('fhirId')
  end  
  result
end