Class: FHIR::Contract::ValuedItem

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

Constant Summary collapse

MULTIPLE_TYPES =
{
  'entity' => ['CodeableConcept', 'Reference']
}
METADATA =
{
  'id' => {'type'=>'string', 'path'=>'ValuedItem.id', 'min'=>0, 'max'=>1},
  'extension' => {'type'=>'Extension', 'path'=>'ValuedItem.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'ValuedItem.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'entityCodeableConcept' => {'type'=>'CodeableConcept', 'path'=>'ValuedItem.entity[x]', 'min'=>0, 'max'=>1},
  'entityReference' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Resource'], 'type'=>'Reference', 'path'=>'ValuedItem.entity[x]', 'min'=>0, 'max'=>1},
  'identifier' => {'type'=>'Identifier', 'path'=>'ValuedItem.identifier', 'min'=>0, 'max'=>1},
  'effectiveTime' => {'type'=>'dateTime', 'path'=>'ValuedItem.effectiveTime', 'min'=>0, 'max'=>1},
  'quantity' => {'type'=>'Quantity', 'path'=>'ValuedItem.quantity', 'min'=>0, 'max'=>1},
  'unitPrice' => {'type'=>'Money', 'path'=>'ValuedItem.unitPrice', 'min'=>0, 'max'=>1},
  'factor' => {'type'=>'decimal', 'path'=>'ValuedItem.factor', 'min'=>0, 'max'=>1},
  'points' => {'type'=>'decimal', 'path'=>'ValuedItem.points', 'min'=>0, 'max'=>1},
  'net' => {'type'=>'Money', 'path'=>'ValuedItem.net', '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?, #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

#effectiveTimeObject

0-1 dateTime



117
118
119
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 117

def effectiveTime
  @effectiveTime
end

#entityCodeableConceptObject

0-1 CodeableConcept



114
115
116
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 114

def entityCodeableConcept
  @entityCodeableConcept
end

#entityReferenceObject

0-1 Reference(Resource)



115
116
117
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 115

def entityReference
  @entityReference
end

#extensionObject

0-* [ Extension ]



112
113
114
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 112

def extension
  @extension
end

#factorObject

0-1 decimal



120
121
122
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 120

def factor
  @factor
end

#idObject

0-1 string



111
112
113
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 111

def id
  @id
end

#identifierObject

0-1 Identifier



116
117
118
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 116

def identifier
  @identifier
end

#modifierExtensionObject

0-* [ Extension ]



113
114
115
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 113

def modifierExtension
  @modifierExtension
end

#netObject

0-1 Money



122
123
124
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 122

def net
  @net
end

#pointsObject

0-1 decimal



121
122
123
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 121

def points
  @points
end

#quantityObject

0-1 Quantity



118
119
120
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 118

def quantity
  @quantity
end

#unitPriceObject

0-1 Money



119
120
121
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 119

def unitPrice
  @unitPrice
end