Class: FHIR::Address

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

Constant Summary collapse

SEARCH_PARAMS =
[]
METADATA =
{
  'id' => {'type'=>'string', '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', 'billing']}, 'type'=>'code', 'path'=>'Address.use', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/address-use|4.0.0'}},
  '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|4.0.0'}},
  '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, #equals?, #hash, #initialize, #method_missing, #mismatch, #primitive?, #to_reference, #valid?, #validate, #validate_profile

Constructor Details

This class inherits a constructor from FHIR::Model

Dynamic Method Handling

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

Instance Attribute Details

#cityObject

0-1 string



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

def city
  @city
end

#countryObject

0-1 string



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

def country
  @country
end

#districtObject

0-1 string



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

def district
  @district
end

#extensionObject

0-* [ Extension ]



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

def extension
  @extension
end

#idObject

0-1 string



23
24
25
# File 'lib/fhir_models/fhir/types/Address.rb', line 23

def id
  @id
end

#lineObject

0-* [ string ]



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

def line
  @line
end

#periodObject

0-1 Period



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

def period
  @period
end

#postalCodeObject

0-1 string



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

def postalCode
  @postalCode
end

#stateObject

0-1 string



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

def state
  @state
end

#textObject

0-1 string



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

def text
  @text
end

#typeObject

0-1 code



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

def type
  @type
end

#useObject

0-1 code



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

def use
  @use
end