Class: BuildingSync::OperationRange

Inherits:
Object
  • Object
show all
Defined in:
lib/BuildingSync.rb

Overview

http://www.gbxml.org/schemaOperationRange

lowValue - BuildingSync::LowValue
highValue - BuildingSync::HighValue

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(lowValue = [], highValue = []) ⇒ OperationRange

Returns a new instance of OperationRange.



30387
30388
30389
30390
# File 'lib/BuildingSync.rb', line 30387

def initialize(lowValue = [], highValue = [])
  @lowValue = lowValue
  @highValue = highValue
end

Instance Attribute Details

#highValueObject

Returns the value of attribute highValue.



30385
30386
30387
# File 'lib/BuildingSync.rb', line 30385

def highValue
  @highValue
end

#lowValueObject

Returns the value of attribute lowValue.



30384
30385
30386
# File 'lib/BuildingSync.rb', line 30384

def lowValue
  @lowValue
end