Class: FHIR::CodeSystemProperty
- Inherits:
-
BackboneElement
- Object
- Type
- Element
- BackboneElement
- FHIR::CodeSystemProperty
- Includes:
- Mongoid::Document
- Defined in:
- app/models/fhir/code_system_property.rb
Overview
fhir/code_system_property.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.transform_json(json_hash, target = CodeSystemProperty.new) ⇒ Object
40 41 42 43 44 45 46 47 48 49 |
# File 'app/models/fhir/code_system_property.rb', line 40 def self.transform_json(json_hash, target = CodeSystemProperty.new) result = self.superclass.transform_json(json_hash, target) result['code'] = PrimitiveCode.transform_json(json_hash['code'], json_hash['_code']) unless json_hash['code'].nil? result['uri'] = PrimitiveUri.transform_json(json_hash['uri'], json_hash['_uri']) unless json_hash['uri'].nil? result['description'] = PrimitiveString.transform_json(json_hash['description'], json_hash['_description']) unless json_hash['description'].nil? result['type'] = PropertyType.transform_json(json_hash['type'], json_hash['_type']) unless json_hash['type'].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/code_system_property.rb', line 10 def as_json(*args) result = super unless self.code.nil? result['code'] = self.code.value serialized = Extension.serializePrimitiveExtension(self.code) result['_code'] = serialized unless serialized.nil? end unless self.uri.nil? result['uri'] = self.uri.value serialized = Extension.serializePrimitiveExtension(self.uri) result['_uri'] = serialized unless serialized.nil? end unless self.description.nil? result['description'] = self.description.value serialized = Extension.serializePrimitiveExtension(self.description) result['_description'] = 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 result.delete('id') unless self.fhirId.nil? result['id'] = self.fhirId result.delete('fhirId') end result end |