@realestate/types
Version:
Types for real estate
192 lines (163 loc) • 4.62 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 SecurityFeatures {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Building+Security}
*
* The property has building security.
*/
BuildingSecurity = 'BuildingSecurity',
/**
* The property has carbon monoxide detector(s).
*/
CarbonMonoxideDetectors = 'CarbonMonoxideDetectors',
/**
* The property has closed circuit camera(s).
*/
ClosedCircuitCameras = 'ClosedCircuitCameras',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Fire+Alarm}
*
* The property has fire alarm(s).
*/
FireAlarm = 'FireAlarm',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Fire+Escape}
*
* The property has a fire escape.
*/
FireEscape = 'FireEscape',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Fire+Sprinkler+System}
*
* The property has a fire sprinkler system.
*/
FireSprinklerSystem = 'FireSprinklerSystem',
/**
* The property has firewall(s).
*/
Firewalls = 'Firewalls',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Gated+Community}
*
* The property is in a gated community.
*/
GatedCommunity = 'GatedCommunity',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Gated+with+Guard}
*
* The property is in a gated community/area with guard service.
*/
GatedWithGuard = 'GatedWithGuard',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Key+Card+Entry}
*
* The property or community has key card entry.
*/
KeyCardEntry = 'KeyCardEntry',
/**
* The property has security features other than those in this list.
*/
Other = 'Other',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Panic+Alarm}
*
* The property has a panic alarm.
*/
PanicAlarm = 'PanicAlarm',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Prewired}
*
* The property is prewired for a security system.
*/
Prewired = 'Prewired',
/**
* The property has a secured garage or parking area.
*/
SecuredGarageParking = 'SecuredGarageParking',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Security+Fence}
*
* The property has a security fence.
*/
SecurityFence = 'SecurityFence',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Security+Gate}
*
* The property has a security gate.
*/
SecurityGate = 'SecurityGate',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Security+Guard}
*
* The property or community has a security guard.
*/
SecurityGuard = 'SecurityGuard',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Security+Lights}
*
* The property has security lights.
*/
SecurityLights = 'SecurityLights',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Security+Service}
*
* The property has a security service.
*/
SecurityService = 'SecurityService',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Security+System}
*
* The property has a security system.
*/
SecuritySystem = 'SecuritySystem',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Security+System+Leased}
*
* The property has a leased security system.
*/
SecuritySystemLeased = 'SecuritySystemLeased',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Security+System+Owned}
*
* The property has an owned security system.
*/
SecuritySystemOwned = 'SecuritySystemOwned',
/**
* See the remarks fields for more information about the security features of the property.
*/
SeeRemarks = 'SeeRemarks',
/**
* The property has smoke detector(s).
*/
SmokeDetectors = 'SmokeDetectors',
/**
* {@link https://ddwiki.reso.org/display/DDW17/24+Hour+Security}
*
* The property has 24 hour security.
*/
TwentyFourHourSecurity = 'TwentyFourHourSecurity',
/**
* The security features vary from unit to unit.
*/
VariesByUnit = 'VariesByUnit',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Window+Bars}
*
* The property has window bars.
*/
WindowBars = 'WindowBars',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Window+Bars+with+Quick+Release}
*
* The property has window bars with a quick release mechanism.
*/
WindowBarsWithQuickRelease = 'WindowBarsWithQuickRelease',
}