Class: FHIR::Location::HoursOfOperation

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

Constant Summary collapse

METADATA =
{
  'id' => {'type'=>'string', 'path'=>'HoursOfOperation.id', 'min'=>0, 'max'=>1},
  'extension' => {'type'=>'Extension', 'path'=>'HoursOfOperation.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'HoursOfOperation.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'daysOfWeek' => {'valid_codes'=>{'http://hl7.org/fhir/days-of-week'=>['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun']}, 'type'=>'code', 'path'=>'HoursOfOperation.daysOfWeek', 'min'=>0, 'max'=>Float::INFINITY, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/days-of-week|4.0.0'}},
  'allDay' => {'type'=>'boolean', 'path'=>'HoursOfOperation.allDay', 'min'=>0, 'max'=>1},
  'openingTime' => {'type'=>'time', 'path'=>'HoursOfOperation.openingTime', 'min'=>0, 'max'=>1},
  'closingTime' => {'type'=>'time', 'path'=>'HoursOfOperation.closingTime', '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

#allDayObject

0-1 boolean



77
78
79
# File 'lib/fhir_models/fhir/resources/Location.rb', line 77

def allDay
  @allDay
end

#closingTimeObject

0-1 time



79
80
81
# File 'lib/fhir_models/fhir/resources/Location.rb', line 79

def closingTime
  @closingTime
end

#daysOfWeekObject

0-* [ code ]



76
77
78
# File 'lib/fhir_models/fhir/resources/Location.rb', line 76

def daysOfWeek
  @daysOfWeek
end

#extensionObject

0-* [ Extension ]



74
75
76
# File 'lib/fhir_models/fhir/resources/Location.rb', line 74

def extension
  @extension
end

#idObject

0-1 string



73
74
75
# File 'lib/fhir_models/fhir/resources/Location.rb', line 73

def id
  @id
end

#modifierExtensionObject

0-* [ Extension ]



75
76
77
# File 'lib/fhir_models/fhir/resources/Location.rb', line 75

def modifierExtension
  @modifierExtension
end

#openingTimeObject

0-1 time



78
79
80
# File 'lib/fhir_models/fhir/resources/Location.rb', line 78

def openingTime
  @openingTime
end