Class: FHIR::Questionnaire::Item::EnableWhen

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

Constant Summary collapse

MULTIPLE_TYPES =
{
  'answer' => ['boolean', 'decimal', 'integer', 'date', 'dateTime', 'time', 'string', 'Coding', 'Quantity', 'Reference']
}
METADATA =
{
  'id' => {'type'=>'string', 'path'=>'EnableWhen.id', 'min'=>0, 'max'=>1},
  'extension' => {'type'=>'Extension', 'path'=>'EnableWhen.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'EnableWhen.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'question' => {'type'=>'string', 'path'=>'EnableWhen.question', 'min'=>1, 'max'=>1},
  'operator' => {'valid_codes'=>{'http://hl7.org/fhir/questionnaire-enable-operator'=>['exists', '=', '!=', '>', '<', '>=', '<=']}, 'type'=>'code', 'path'=>'EnableWhen.operator', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/questionnaire-enable-operator|4.0.0'}},
  'answerBoolean' => {'type'=>'boolean', 'path'=>'EnableWhen.answer[x]', 'min'=>1, 'max'=>1},
  'answerDecimal' => {'type'=>'decimal', 'path'=>'EnableWhen.answer[x]', 'min'=>1, 'max'=>1},
  'answerInteger' => {'type'=>'integer', 'path'=>'EnableWhen.answer[x]', 'min'=>1, 'max'=>1},
  'answerDate' => {'type'=>'date', 'path'=>'EnableWhen.answer[x]', 'min'=>1, 'max'=>1},
  'answerDateTime' => {'type'=>'dateTime', 'path'=>'EnableWhen.answer[x]', 'min'=>1, 'max'=>1},
  'answerTime' => {'type'=>'time', 'path'=>'EnableWhen.answer[x]', 'min'=>1, 'max'=>1},
  'answerString' => {'type'=>'string', 'path'=>'EnableWhen.answer[x]', 'min'=>1, 'max'=>1},
  'answerCoding' => {'type'=>'Coding', 'path'=>'EnableWhen.answer[x]', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/questionnaire-answers'}},
  'answerQuantity' => {'type'=>'Quantity', 'path'=>'EnableWhen.answer[x]', 'min'=>1, 'max'=>1},
  'answerReference' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Resource'], 'type'=>'Reference', 'path'=>'EnableWhen.answer[x]', 'min'=>1, '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

#answerBooleanObject

1-1 boolean



99
100
101
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 99

def answerBoolean
  @answerBoolean
end

#answerCodingObject

1-1 Coding



106
107
108
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 106

def answerCoding
  @answerCoding
end

#answerDateObject

1-1 date



102
103
104
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 102

def answerDate
  @answerDate
end

#answerDateTimeObject

1-1 dateTime



103
104
105
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 103

def answerDateTime
  @answerDateTime
end

#answerDecimalObject

1-1 decimal



100
101
102
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 100

def answerDecimal
  @answerDecimal
end

#answerIntegerObject

1-1 integer



101
102
103
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 101

def answerInteger
  @answerInteger
end

#answerQuantityObject

1-1 Quantity



107
108
109
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 107

def answerQuantity
  @answerQuantity
end

#answerReferenceObject

1-1 Reference(Resource)



108
109
110
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 108

def answerReference
  @answerReference
end

#answerStringObject

1-1 string



105
106
107
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 105

def answerString
  @answerString
end

#answerTimeObject

1-1 time



104
105
106
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 104

def answerTime
  @answerTime
end

#extensionObject

0-* [ Extension ]



95
96
97
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 95

def extension
  @extension
end

#idObject

0-1 string



94
95
96
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 94

def id
  @id
end

#modifierExtensionObject

0-* [ Extension ]



96
97
98
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 96

def modifierExtension
  @modifierExtension
end

#operatorObject

1-1 code



98
99
100
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 98

def operator
  @operator
end

#questionObject

1-1 string



97
98
99
# File 'lib/fhir_models/fhir/resources/Questionnaire.rb', line 97

def question
  @question
end