Class: FHIR::DSTU2::ContactPoint
- Defined in:
- lib/fhir_dstu2_models/fhir/types/ContactPoint.rb
Constant Summary collapse
- SEARCH_PARAMS =
METADATA = { 'id' => { 'type' => 'id', 'path' => 'ContactPoint.id', 'min' => 0, 'max' => 1 }, 'extension' => { 'type' => 'Extension', 'path' => 'ContactPoint.extension', 'min' => 0, 'max' => Float::INFINITY }, 'system' => { 'valid_codes' => { 'http://hl7.org/fhir/contact-point-system' => ['phone', 'fax', 'email', 'pager', 'other'] }, 'type' => 'code', 'path' => 'ContactPoint.system', 'min' => 0, 'max' => 1, 'binding' => { 'strength' => 'required', 'uri' => 'http://hl7.org/fhir/ValueSet/contact-point-system' } }, 'value' => { 'type' => 'string', 'path' => 'ContactPoint.value', 'min' => 0, 'max' => 1 }, 'use' => { 'valid_codes' => { 'http://hl7.org/fhir/contact-point-use' => ['home', 'work', 'temp', 'old', 'mobile'] }, 'type' => 'code', 'path' => 'ContactPoint.use', 'min' => 0, 'max' => 1, 'binding' => { 'strength' => 'required', 'uri' => 'http://hl7.org/fhir/ValueSet/contact-point-use' } }, 'rank' => { 'type' => 'positiveInt', 'path' => 'ContactPoint.rank', 'min' => 0, 'max' => 1 }, 'period' => { 'type' => 'Period', 'path' => 'ContactPoint.period', 'min' => 0, 'max' => 1 } }
Instance Attribute Summary collapse
-
#extension ⇒ Object
0-* [ Extension ].
-
#id ⇒ Object
0-1 id.
-
#period ⇒ Object
0-1 Period.
-
#rank ⇒ Object
0-1 positiveInt.
-
#system ⇒ Object
0-1 code.
-
#use ⇒ Object
0-1 code.
-
#value ⇒ Object
0-1 string.
Method Summary
Methods included from Xml
from_xml, #to_xml, valid?, validate
Methods included from Deprecate
Methods included from Json
Methods included from Hashable
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
#extension ⇒ Object
0-* [ Extension ]
20 21 22 |
# File 'lib/fhir_dstu2_models/fhir/types/ContactPoint.rb', line 20 def extension @extension end |
#id ⇒ Object
0-1 id
19 20 21 |
# File 'lib/fhir_dstu2_models/fhir/types/ContactPoint.rb', line 19 def id @id end |
#period ⇒ Object
0-1 Period
25 26 27 |
# File 'lib/fhir_dstu2_models/fhir/types/ContactPoint.rb', line 25 def period @period end |
#rank ⇒ Object
0-1 positiveInt
24 25 26 |
# File 'lib/fhir_dstu2_models/fhir/types/ContactPoint.rb', line 24 def rank @rank end |
#system ⇒ Object
0-1 code
21 22 23 |
# File 'lib/fhir_dstu2_models/fhir/types/ContactPoint.rb', line 21 def system @system end |
#use ⇒ Object
0-1 code
23 24 25 |
# File 'lib/fhir_dstu2_models/fhir/types/ContactPoint.rb', line 23 def use @use end |
#value ⇒ Object
0-1 string
22 23 24 |
# File 'lib/fhir_dstu2_models/fhir/types/ContactPoint.rb', line 22 def value @value end |