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.



30912
30913
30914
30915
# File 'lib/BuildingSync.rb', line 30912

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

Instance Attribute Details

#highValueObject

Returns the value of attribute highValue.



30910
30911
30912
# File 'lib/BuildingSync.rb', line 30910

def highValue
  @highValue
end

#lowValueObject

Returns the value of attribute lowValue.



30909
30910
30911
# File 'lib/BuildingSync.rb', line 30909

def lowValue
  @lowValue
end