Class: FHIR::DSTU2::Address
- Defined in:
- lib/fhir_dstu2_models/fhir/types/Address.rb
Constant Summary collapse
- SEARCH_PARAMS =
METADATA = { 'id' => { 'type' => 'id', 'path' => 'Address.id', 'min' => 0, 'max' => 1 }, 'extension' => { 'type' => 'Extension', 'path' => 'Address.extension', 'min' => 0, 'max' => Float::INFINITY }, 'use' => { 'valid_codes' => { 'http://hl7.org/fhir/address-use' => ['home', 'work', 'temp', 'old'] }, 'type' => 'code', 'path' => 'Address.use', 'min' => 0, 'max' => 1, 'binding' => { 'strength' => 'required', 'uri' => 'http://hl7.org/fhir/ValueSet/address-use' } }, 'type' => { 'valid_codes' => { 'http://hl7.org/fhir/address-type' => ['postal', 'physical', 'both'] }, 'type' => 'code', 'path' => 'Address.type', 'min' => 0, 'max' => 1, 'binding' => { 'strength' => 'required', 'uri' => 'http://hl7.org/fhir/ValueSet/address-type' } }, 'text' => { 'type' => 'string', 'path' => 'Address.text', 'min' => 0, 'max' => 1 }, 'line' => { 'type' => 'string', 'path' => 'Address.line', 'min' => 0, 'max' => Float::INFINITY }, 'city' => { 'type' => 'string', 'path' => 'Address.city', 'min' => 0, 'max' => 1 }, 'district' => { 'type' => 'string', 'path' => 'Address.district', 'min' => 0, 'max' => 1 }, 'state' => { 'type' => 'string', 'path' => 'Address.state', 'min' => 0, 'max' => 1 }, 'postalCode' => { 'type' => 'string', 'path' => 'Address.postalCode', 'min' => 0, 'max' => 1 }, 'country' => { 'type' => 'string', 'path' => 'Address.country', 'min' => 0, 'max' => 1 }, 'period' => { 'type' => 'Period', 'path' => 'Address.period', 'min' => 0, 'max' => 1 } }
Instance Attribute Summary collapse
-
#city ⇒ Object
0-1 string.
-
#country ⇒ Object
0-1 string.
-
#district ⇒ Object
0-1 string.
-
#extension ⇒ Object
0-* [ Extension ].
-
#id ⇒ Object
0-1 id.
-
#line ⇒ Object
0-* [ string ].
-
#period ⇒ Object
0-1 Period.
-
#postalCode ⇒ Object
0-1 string.
-
#state ⇒ Object
0-1 string.
-
#text ⇒ Object
0-1 string.
-
#type ⇒ Object
0-1 code.
-
#use ⇒ Object
0-1 code.
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
#city ⇒ Object
0-1 string
30 31 32 |
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 30 def city @city end |
#country ⇒ Object
0-1 string
34 35 36 |
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 34 def country @country end |
#district ⇒ Object
0-1 string
31 32 33 |
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 31 def district @district end |
#extension ⇒ Object
0-* [ Extension ]
25 26 27 |
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 25 def extension @extension end |
#id ⇒ Object
0-1 id
24 25 26 |
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 24 def id @id end |
#line ⇒ Object
0-* [ string ]
29 30 31 |
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 29 def line @line end |
#period ⇒ Object
0-1 Period
35 36 37 |
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 35 def period @period end |
#postalCode ⇒ Object
0-1 string
33 34 35 |
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 33 def postalCode @postalCode end |
#state ⇒ Object
0-1 string
32 33 34 |
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 32 def state @state end |
#text ⇒ Object
0-1 string
28 29 30 |
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 28 def text @text end |
#type ⇒ Object
0-1 code
27 28 29 |
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 27 def type @type end |
#use ⇒ Object
0-1 code
26 27 28 |
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 26 def use @use end |