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.



2993
2994
2995
2996
2997
2998
# File 'lib/BuildingSync.rb', line 2993

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.



2990
2991
2992
# File 'lib/BuildingSync.rb', line 2990

def actual
  @actual
end

#adjustedToYearObject

Returns the value of attribute adjustedToYear.



2989
2990
2991
# File 'lib/BuildingSync.rb', line 2989

def adjustedToYear
  @adjustedToYear
end

#normalizedObject

Returns the value of attribute normalized.



2988
2989
2990
# File 'lib/BuildingSync.rb', line 2988

def normalized
  @normalized
end

#otherObject

Returns the value of attribute other.



2991
2992
2993
# File 'lib/BuildingSync.rb', line 2991

def other
  @other
end