Class: BuildingSync::LaundrySystemType::LaundryType

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(washer = nil, dryer = nil, combination = nil, other = nil, unknown = nil) ⇒ LaundryType

Returns a new instance of LaundryType.



11339
11340
11341
11342
11343
11344
11345
# File 'lib/BuildingSync.rb', line 11339

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

#combinationObject

Returns the value of attribute combination.



11335
11336
11337
# File 'lib/BuildingSync.rb', line 11335

def combination
  @combination
end

#dryerObject

Returns the value of attribute dryer.



11334
11335
11336
# File 'lib/BuildingSync.rb', line 11334

def dryer
  @dryer
end

#otherObject

Returns the value of attribute other.



11336
11337
11338
# File 'lib/BuildingSync.rb', line 11336

def other
  @other
end

#unknownObject

Returns the value of attribute unknown.



11337
11338
11339
# File 'lib/BuildingSync.rb', line 11337

def unknown
  @unknown
end

#washerObject

Returns the value of attribute washer.



11333
11334
11335
# File 'lib/BuildingSync.rb', line 11333

def washer
  @washer
end