Class: FHIR::DSTU2::Address

Inherits:
Model
  • Object
show all
Includes:
Hashable, Json, Xml
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

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

#cityObject

0-1 string



30
31
32
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 30

def city
  @city
end

#countryObject

0-1 string



34
35
36
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 34

def country
  @country
end

#districtObject

0-1 string



31
32
33
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 31

def district
  @district
end

#extensionObject

0-* [ Extension ]



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

def extension
  @extension
end

#idObject

0-1 id



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

def id
  @id
end

#lineObject

0-* [ string ]



29
30
31
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 29

def line
  @line
end

#periodObject

0-1 Period



35
36
37
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 35

def period
  @period
end

#postalCodeObject

0-1 string



33
34
35
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 33

def postalCode
  @postalCode
end

#stateObject

0-1 string



32
33
34
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 32

def state
  @state
end

#textObject

0-1 string



28
29
30
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 28

def text
  @text
end

#typeObject

0-1 code



27
28
29
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 27

def type
  @type
end

#useObject

0-1 code



26
27
28
# File 'lib/fhir_dstu2_models/fhir/types/Address.rb', line 26

def use
  @use
end