Class: FHIR::DSTU2::Bundle

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

Defined Under Namespace

Classes: Entry, Link

Constant Summary collapse

SEARCH_PARAMS =
['composition', 'message', 'type']
METADATA =
{
  'id' => { 'type' => 'id', 'path' => 'Bundle.id', 'min' => 0, 'max' => 1 },
  'meta' => { 'type' => 'Meta', 'path' => 'Bundle.meta', 'min' => 0, 'max' => 1 },
  'implicitRules' => { 'type' => 'uri', 'path' => 'Bundle.implicitRules', 'min' => 0, 'max' => 1 },
  'language' => { 'type' => 'code', 'path' => 'Bundle.language', 'min' => 0, 'max' => 1, 'binding' => { 'strength' => 'required', 'uri' => 'http://tools.ietf.org/html/bcp47' } },
  'type' => { 'valid_codes' => { 'http://hl7.org/fhir/bundle-type' => ['document', 'message', 'transaction', 'transaction-response', 'batch', 'batch-response', 'history', 'searchset', 'collection'] }, 'type' => 'code', 'path' => 'Bundle.type', 'min' => 1, 'max' => 1, 'binding' => { 'strength' => 'required', 'uri' => 'http://hl7.org/fhir/ValueSet/bundle-type' } },
  'total' => { 'type' => 'unsignedInt', 'path' => 'Bundle.total', 'min' => 0, 'max' => 1 },
  'link' => { 'type' => 'Bundle::Link', 'path' => 'Bundle.link', 'min' => 0, 'max' => Float::INFINITY },
  'entry' => { 'type' => 'Bundle::Entry', 'path' => 'Bundle.entry', 'min' => 0, 'max' => Float::INFINITY },
  'signature' => { 'type' => 'Signature', 'path' => 'Bundle.signature', 'min' => 0, 'max' => 1 }
}

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#entryObject

0-* [ Bundle::Entry ]



148
149
150
# File 'lib/fhir_dstu2_models/fhir/resources/Bundle.rb', line 148

def entry
  @entry
end

#idObject

0-1 id



141
142
143
# File 'lib/fhir_dstu2_models/fhir/resources/Bundle.rb', line 141

def id
  @id
end

#implicitRulesObject

0-1 uri



143
144
145
# File 'lib/fhir_dstu2_models/fhir/resources/Bundle.rb', line 143

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



144
145
146
# File 'lib/fhir_dstu2_models/fhir/resources/Bundle.rb', line 144

def language
  @language
end

0-* [ Bundle::Link ]



147
148
149
# File 'lib/fhir_dstu2_models/fhir/resources/Bundle.rb', line 147

def link
  @link
end

#metaObject

0-1 Meta



142
143
144
# File 'lib/fhir_dstu2_models/fhir/resources/Bundle.rb', line 142

def meta
  @meta
end

#signatureObject

0-1 Signature



149
150
151
# File 'lib/fhir_dstu2_models/fhir/resources/Bundle.rb', line 149

def signature
  @signature
end

#totalObject

0-1 unsignedInt



146
147
148
# File 'lib/fhir_dstu2_models/fhir/resources/Bundle.rb', line 146

def total
  @total
end

#typeObject

1-1 code



145
146
147
# File 'lib/fhir_dstu2_models/fhir/resources/Bundle.rb', line 145

def type
  @type
end

Instance Method Details

#resourceTypeObject



151
152
153
# File 'lib/fhir_dstu2_models/fhir/resources/Bundle.rb', line 151

def resourceType
  'Bundle'
end