Class: FHIR::DSTU2::Coding

Inherits:
Model
  • Object
show all
Includes:
Hashable, Json, Xml
Defined in:
lib/fhir_dstu2_models/fhir/types/Coding.rb

Constant Summary collapse

SEARCH_PARAMS =
METADATA = {
  'id' => { 'type' => 'id', 'path' => 'Coding.id', 'min' => 0, 'max' => 1 },
  'extension' => { 'type' => 'Extension', 'path' => 'Coding.extension', 'min' => 0, 'max' => Float::INFINITY },
  'system' => { 'type' => 'uri', 'path' => 'Coding.system', 'min' => 0, 'max' => 1 },
  'version' => { 'type' => 'string', 'path' => 'Coding.version', 'min' => 0, 'max' => 1 },
  'code' => { 'type' => 'code', 'path' => 'Coding.code', 'min' => 0, 'max' => 1 },
  'display' => { 'type' => 'string', 'path' => 'Coding.display', 'min' => 0, 'max' => 1 },
  'userSelected' => { 'type' => 'boolean', 'path' => 'Coding.userSelected', 'min' => 0, 'max' => 1 }
}

Instance Attribute Summary collapse

Method Summary

Methods included from Xml

from_xml, #to_xml, valid?, validate

Methods included from Deprecate

#deprecate

Methods included from Json

from_json, #to_json

Methods included from Hashable

#from_hash, #to_hash

Methods inherited from Model

#==, #attribute_mismatch, #compare_attribute, #each_element, #equals?, #hash, #initialize, #method_missing, #mismatch, #primitive?, #respond_to_missing?, #to_reference, #valid?, #validate, #validate_profile

Constructor Details

This class inherits a constructor from FHIR::DSTU2::Model

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class FHIR::DSTU2::Model

Instance Attribute Details

#codeObject

0-1 code



23
24
25
# File 'lib/fhir_dstu2_models/fhir/types/Coding.rb', line 23

def code
  @code
end

#displayObject

0-1 string



24
25
26
# File 'lib/fhir_dstu2_models/fhir/types/Coding.rb', line 24

def display
  @display
end

#extensionObject

0-* [ Extension ]



20
21
22
# File 'lib/fhir_dstu2_models/fhir/types/Coding.rb', line 20

def extension
  @extension
end

#idObject

0-1 id



19
20
21
# File 'lib/fhir_dstu2_models/fhir/types/Coding.rb', line 19

def id
  @id
end

#systemObject

0-1 uri



21
22
23
# File 'lib/fhir_dstu2_models/fhir/types/Coding.rb', line 21

def system
  @system
end

#userSelectedObject

0-1 boolean



25
26
27
# File 'lib/fhir_dstu2_models/fhir/types/Coding.rb', line 25

def userSelected
  @userSelected
end

#versionObject

0-1 string



22
23
24
# File 'lib/fhir_dstu2_models/fhir/types/Coding.rb', line 22

def version
  @version
end