Class: BuildingSync::ScenarioType::WeatherType

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

Overview

inner class for member: WeatherType http://buildingsync.net/schemas/bedes-auc/2019WeatherType

normalized - BuildingSync::ScenarioType::WeatherType::Normalized
adjustedToYear - BuildingSync::ScenarioType::WeatherType::AdjustedToYear
actual - BuildingSync::ScenarioType::WeatherType::Actual
other - BuildingSync::OtherType

Defined Under Namespace

Classes: Actual, AdjustedToYear, Normalized

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(normalized = nil, adjustedToYear = nil, actual = nil, other = nil) ⇒ WeatherType

Returns a new instance of WeatherType.



2888
2889
2890
2891
2892
2893
# File 'lib/BuildingSync.rb', line 2888

def initialize(normalized = nil, adjustedToYear = nil, actual = nil, other = nil)
  @normalized = normalized
  @adjustedToYear = adjustedToYear
  @actual = actual
  @other = other
end

Instance Attribute Details

#actualObject

Returns the value of attribute actual.



2885
2886
2887
# File 'lib/BuildingSync.rb', line 2885

def actual
  @actual
end

#adjustedToYearObject

Returns the value of attribute adjustedToYear.



2884
2885
2886
# File 'lib/BuildingSync.rb', line 2884

def adjustedToYear
  @adjustedToYear
end

#normalizedObject

Returns the value of attribute normalized.



2883
2884
2885
# File 'lib/BuildingSync.rb', line 2883

def normalized
  @normalized
end

#otherObject

Returns the value of attribute other.



2886
2887
2888
# File 'lib/BuildingSync.rb', line 2886

def other
  @other
end