Class: FHIR::Attachment

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

Constant Summary collapse

SEARCH_PARAMS =
[]
METADATA =
{
  'id' => {'type'=>'string', '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://hl7.org/fhir/ValueSet/mimetypes|4.0.0'}},
  'language' => {'valid_codes'=>{'urn:ietf:bcp:47'=>['ar', 'bn', 'cs', 'da', 'de', 'de-AT', 'de-CH', 'de-DE', 'el', 'en', 'en-AU', 'en-CA', 'en-GB', 'en-IN', 'en-NZ', 'en-SG', 'en-US', 'es', 'es-AR', 'es-ES', 'es-UY', 'fi', 'fr', 'fr-BE', 'fr-CH', 'fr-FR', 'fy', 'fy-NL', 'hi', 'hr', 'it', 'it-CH', 'it-IT', 'ja', 'ko', 'nl', 'nl-BE', 'nl-NL', 'no', 'no-NO', 'pa', 'pl', 'pt', 'pt-BR', 'ru', 'ru-RU', 'sr', 'sr-RS', 'sv', 'sv-SE', 'te', 'zh', 'zh-CN', 'zh-HK', 'zh-SG', 'zh-TW']}, 'type'=>'code', 'path'=>'Attachment.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'preferred', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}},
  'data' => {'type'=>'base64Binary', 'path'=>'Attachment.data', 'min'=>0, 'max'=>1},
  'url' => {'type'=>'url', '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::Model

Dynamic Method Handling

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

Instance Attribute Details

#contentTypeObject

0-1 code



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

def contentType
  @contentType
end

#creationObject

0-1 dateTime



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

def creation
  @creation
end

#dataObject

0-1 base64Binary



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

def data
  @data
end

#extensionObject

0-* [ Extension ]



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

def extension
  @extension
end

#hashObject

0-1 base64Binary



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

def hash
  @hash
end

#idObject

0-1 string



21
22
23
# File 'lib/fhir_models/fhir/types/Attachment.rb', line 21

def id
  @id
end

#languageObject

0-1 code



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

def language
  @language
end

#sizeObject

0-1 unsignedInt



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

def size
  @size
end

#titleObject

0-1 string



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

def title
  @title
end

#urlObject

0-1 url



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

def url
  @url
end