Class: BuildingSync::LaundrySystemType::LaundryType
- Inherits:
-
Object
- Object
- BuildingSync::LaundrySystemType::LaundryType
- Defined in:
- lib/BuildingSync.rb
Overview
inner class for member: LaundryType http://buildingsync.net/schemas/bedes-auc/2019LaundryType
washer - BuildingSync::LaundrySystemType::LaundryType::Washer
dryer - BuildingSync::LaundrySystemType::LaundryType::Dryer
combination - BuildingSync::LaundrySystemType::LaundryType::Combination
other - BuildingSync::OtherType
unknown - BuildingSync::UnknownType
Defined Under Namespace
Classes: Combination, Dryer, Washer
Instance Attribute Summary collapse
-
#combination ⇒ Object
Returns the value of attribute combination.
-
#dryer ⇒ Object
Returns the value of attribute dryer.
-
#other ⇒ Object
Returns the value of attribute other.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#washer ⇒ Object
Returns the value of attribute washer.
Instance Method Summary collapse
-
#initialize(washer = nil, dryer = nil, combination = nil, other = nil, unknown = nil) ⇒ LaundryType
constructor
A new instance of LaundryType.
Constructor Details
#initialize(washer = nil, dryer = nil, combination = nil, other = nil, unknown = nil) ⇒ LaundryType
Returns a new instance of LaundryType.
11448 11449 11450 11451 11452 11453 11454 |
# File 'lib/BuildingSync.rb', line 11448 def initialize(washer = nil, dryer = nil, combination = nil, other = nil, unknown = nil) @washer = washer @dryer = dryer @combination = combination @other = other @unknown = unknown end |
Instance Attribute Details
#combination ⇒ Object
Returns the value of attribute combination.
11444 11445 11446 |
# File 'lib/BuildingSync.rb', line 11444 def combination @combination end |
#dryer ⇒ Object
Returns the value of attribute dryer.
11443 11444 11445 |
# File 'lib/BuildingSync.rb', line 11443 def dryer @dryer end |
#other ⇒ Object
Returns the value of attribute other.
11445 11446 11447 |
# File 'lib/BuildingSync.rb', line 11445 def other @other end |
#unknown ⇒ Object
Returns the value of attribute unknown.
11446 11447 11448 |
# File 'lib/BuildingSync.rb', line 11446 def unknown @unknown end |
#washer ⇒ Object
Returns the value of attribute washer.
11442 11443 11444 |
# File 'lib/BuildingSync.rb', line 11442 def washer @washer end |