Class: FHIR::ChargeItemDefinition::PropertyGroup::PriceComponent

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

Constant Summary collapse

METADATA =
{
  'id' => {'type'=>'string', 'path'=>'PriceComponent.id', 'min'=>0, 'max'=>1},
  'extension' => {'type'=>'Extension', 'path'=>'PriceComponent.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'PriceComponent.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'type' => {'valid_codes'=>{'http://hl7.org/fhir/invoice-priceComponentType'=>['base', 'surcharge', 'deduction', 'discount', 'tax', 'informational']}, 'type'=>'code', 'path'=>'PriceComponent.type', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/invoice-priceComponentType|4.0.0'}},
  'code' => {'type'=>'CodeableConcept', 'path'=>'PriceComponent.code', 'min'=>0, 'max'=>1},
  'factor' => {'type'=>'decimal', 'path'=>'PriceComponent.factor', 'min'=>0, 'max'=>1},
  'amount' => {'type'=>'Money', 'path'=>'PriceComponent.amount', '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

#amountObject

0-1 Money



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

def amount
  @amount
end

#codeObject

0-1 CodeableConcept



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

def code
  @code
end

#extensionObject

0-* [ Extension ]



93
94
95
# File 'lib/fhir_models/fhir/resources/ChargeItemDefinition.rb', line 93

def extension
  @extension
end

#factorObject

0-1 decimal



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

def factor
  @factor
end

#idObject

0-1 string



92
93
94
# File 'lib/fhir_models/fhir/resources/ChargeItemDefinition.rb', line 92

def id
  @id
end

#modifierExtensionObject

0-* [ Extension ]



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

def modifierExtension
  @modifierExtension
end

#typeObject

1-1 code



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

def type
  @type
end