Sha256: 1cbb1b265ce8f794ba25d97f572d18a6fe924087e37f810ab7d2e75afc659593
Contents?: true
Size: 758 Bytes
Versions: 6
Compression:
Stored size: 758 Bytes
Contents
module FHIR module STU3 class Range < FHIR::STU3::Model include FHIR::STU3::Hashable include FHIR::STU3::Json include FHIR::STU3::Xml SEARCH_PARAMS = METADATA = { 'id' => {'type'=>'string', 'path'=>'Range.id', 'min'=>0, 'max'=>1}, 'extension' => {'type'=>'Extension', 'path'=>'Range.extension', 'min'=>0, 'max'=>Float::INFINITY}, 'low' => {'type'=>'Quantity', 'path'=>'Range.low', 'min'=>0, 'max'=>1}, 'high' => {'type'=>'Quantity', 'path'=>'Range.high', 'min'=>0, 'max'=>1} } attr_accessor :id # 0-1 string attr_accessor :extension # 0-* [ Extension ] attr_accessor :low # 0-1 Quantity attr_accessor :high # 0-1 Quantity end end end
Version data entries
6 entries across 6 versions & 1 rubygems