Class: FHIR::DSTU2::Attachment

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

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?, #initialize, #method_missing, #mismatch, #primitive?, #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

#contentTypeObject

0-1 code



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

def contentType
  @contentType
end

#creationObject

0-1 dateTime



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

def creation
  @creation
end

#dataObject

0-1 base64Binary



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

def data
  @data
end

#extensionObject

0-* [ Extension ]



23
24
25
# File 'lib/fhir_dstu2_models/fhir/types/Attachment.rb', line 23

def extension
  @extension
end

#hashObject

0-1 base64Binary



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

def hash
  @hash
end

#idObject

0-1 id



22
23
24
# File 'lib/fhir_dstu2_models/fhir/types/Attachment.rb', line 22

def id
  @id
end

#languageObject

0-1 code



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

def language
  @language
end

#sizeObject

0-1 unsignedInt



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

def size
  @size
end

#titleObject

0-1 string



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

def title
  @title
end

#urlObject

0-1 uri



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

def url
  @url
end