Class: FHIR::DSTU2::Attachment
- Defined in:
- lib/fhir_dstu2_models/fhir/types/Attachment.rb
Constant Summary collapse
- SEARCH_PARAMS =
METADATA = { 'id' => { 'type' => 'id', 'path' => 'Attachment.id', 'min' => 0, 'max' => 1 }, 'extension' => { 'type' => 'Extension', 'path' => 'Attachment.extension', 'min' => 0, 'max' => Float::INFINITY }, 'contentType' => { 'type' => 'code', 'path' => 'Attachment.contentType', 'min' => 0, 'max' => 1, 'binding' => { 'strength' => 'required', 'uri' => 'http://www.rfc-editor.org/bcp/bcp13.txt' } }, 'language' => { 'type' => 'code', 'path' => 'Attachment.language', 'min' => 0, 'max' => 1, 'binding' => { 'strength' => 'required', 'uri' => 'http://tools.ietf.org/html/bcp47' } }, 'data' => { 'type' => 'base64Binary', 'path' => 'Attachment.data', 'min' => 0, 'max' => 1 }, 'url' => { 'type' => 'uri', 'path' => 'Attachment.url', 'min' => 0, 'max' => 1 }, 'size' => { 'type' => 'unsignedInt', 'path' => 'Attachment.size', 'min' => 0, 'max' => 1 }, 'hash' => { 'type' => 'base64Binary', 'path' => 'Attachment.hash', 'min' => 0, 'max' => 1 }, 'title' => { 'type' => 'string', 'path' => 'Attachment.title', 'min' => 0, 'max' => 1 }, 'creation' => { 'type' => 'dateTime', 'path' => 'Attachment.creation', 'min' => 0, 'max' => 1 } }
Instance Attribute Summary collapse
-
#contentType ⇒ Object
0-1 code.
-
#creation ⇒ Object
0-1 dateTime.
-
#data ⇒ Object
0-1 base64Binary.
-
#extension ⇒ Object
0-* [ Extension ].
-
#hash ⇒ Object
0-1 base64Binary.
-
#id ⇒ Object
0-1 id.
-
#language ⇒ Object
0-1 code.
-
#size ⇒ Object
0-1 unsignedInt.
-
#title ⇒ Object
0-1 string.
-
#url ⇒ Object
0-1 uri.
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?, #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
#contentType ⇒ Object
0-1 code
24 25 26 |
# File 'lib/fhir_dstu2_models/fhir/types/Attachment.rb', line 24 def contentType @contentType end |
#creation ⇒ Object
0-1 dateTime
31 32 33 |
# File 'lib/fhir_dstu2_models/fhir/types/Attachment.rb', line 31 def creation @creation end |
#data ⇒ Object
0-1 base64Binary
26 27 28 |
# File 'lib/fhir_dstu2_models/fhir/types/Attachment.rb', line 26 def data @data end |
#extension ⇒ Object
0-* [ Extension ]
23 24 25 |
# File 'lib/fhir_dstu2_models/fhir/types/Attachment.rb', line 23 def extension @extension end |
#hash ⇒ Object
0-1 base64Binary
29 30 31 |
# File 'lib/fhir_dstu2_models/fhir/types/Attachment.rb', line 29 def hash @hash end |
#id ⇒ Object
0-1 id
22 23 24 |
# File 'lib/fhir_dstu2_models/fhir/types/Attachment.rb', line 22 def id @id end |
#language ⇒ Object
0-1 code
25 26 27 |
# File 'lib/fhir_dstu2_models/fhir/types/Attachment.rb', line 25 def language @language end |
#size ⇒ Object
0-1 unsignedInt
28 29 30 |
# File 'lib/fhir_dstu2_models/fhir/types/Attachment.rb', line 28 def size @size end |
#title ⇒ Object
0-1 string
30 31 32 |
# File 'lib/fhir_dstu2_models/fhir/types/Attachment.rb', line 30 def title @title end |
#url ⇒ Object
0-1 uri
27 28 29 |
# File 'lib/fhir_dstu2_models/fhir/types/Attachment.rb', line 27 def url @url end |