@realestate/types
Version:
Types for real estate
170 lines (145 loc) • 3.69 kB
TypeScript
/**
* Copyright (c) 2023 ListBird. All Rights Reserved.
*
* This software product includes software or other works developed by RESO,
* subject to the RESO End User License published at www.reso.org.
*
* Any modifications, derivative works, or redistributions of this source must
* maintain this copyright notice. See the RESO EULA for more information.
*/
export enum LaundryFeatures {
/**
* Laundry facilities are in a common area.
*/
CommonArea = 'CommonArea',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Electric+Dryer+Hookup}
*
* The property has electric cloths dryer connections.
*/
ElectricDryerHookup = 'ElectricDryerHookup',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Gas+Dryer+Hookup}
*
* The property has gas cloths dryer connections.
*/
GasDryerHookup = 'GasDryerHookup',
/**
* {@link https://ddwiki.reso.org/display/DDW17/In+Basement}
*
* Laundry is located in the basement.
*/
InBasement = 'InBasement',
/**
* {@link https://ddwiki.reso.org/display/DDW17/In+Bathroom}
*
* Laundry is located in the bathroom.
*/
InBathroom = 'InBathroom',
/**
* {@link https://ddwiki.reso.org/display/DDW17/In+Carport}
*
* Laundry is located in the carport.
*/
InCarport = 'InCarport',
/**
* {@link https://ddwiki.reso.org/display/DDW17/In+Garage}
*
* Laundry is located in the garage.
*/
InGarage = 'InGarage',
/**
* {@link https://ddwiki.reso.org/display/DDW17/In+Hall}
*
* Laundry is located in the hall.
*/
InHall = 'InHall',
/**
* {@link https://ddwiki.reso.org/display/DDW17/In+Kitchen}
*
* Laundry is located in the kitchen.
*/
InKitchen = 'InKitchen',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Inside}
*
* Laundry is located indoors.
*/
Inside = 'Inside',
/**
* {@link https://ddwiki.reso.org/display/DDW17/In+Unit}
*
* Laundry is located within the unit.
*/
InUnit = 'InUnit',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Laundry+Chute}
*
* The property has a laundry chute.
*/
LaundryChute = 'LaundryChute',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Laundry+Closet}
*
* The property has a laundry closet.
*/
LaundryCloset = 'LaundryCloset',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Laundry+Room}
*
* The property has a laundry room.
*/
LaundryRoom = 'LaundryRoom',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Lower+Level}
*
* Laundry is on the lower level.
*/
LowerLevel = 'LowerLevel',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Main+Level}
*
* Laundry is on the main level.
*/
MainLevel = 'MainLevel',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Multiple+Locations}
*
* Laundry is in multiple locations.
*/
MultipleLocations = 'MultipleLocations',
/**
* There are no laundry features.
*/
None = 'None',
/**
* There are laundry features other than those in this list.
*/
Other = 'Other',
/**
* Laundry is located outside.
*/
Outside = 'Outside',
/**
* See remarks for additional information about laundry.
*/
SeeRemarks = 'SeeRemarks',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Sink}
*
* The laundry area has a sink.
*/
Sink = 'Sink',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Upper+Level}
*
* Laundry is on the upper level.
*/
UpperLevel = 'UpperLevel',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Washer+Hookup}
*
* The property has a hookups for a cloths washer.
*/
WasherHookup = 'WasherHookup',
}