UNPKG

@realestate/types

Version:

Types for real estate

149 lines (127 loc) 3.49 kB
/** * 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 WindowFeatures { /** * {@link https://ddwiki.reso.org/display/DDW17/Aluminum+Frames} * * The windows have aluminum frames. */ AluminumFrames = 'AluminumFrames', /** * The property has one or more bay windows. */ BayWindows = 'BayWindows', /** * {@link https://ddwiki.reso.org/display/DDW17/Blinds} * * The property has window blinds. */ Blinds = 'Blinds', /** * The property has one or more windows that would normally be used to display goods or products. */ DisplayWindows = 'DisplayWindows', /** * {@link https://ddwiki.reso.org/display/DDW17/Double+Pane+Windows} * * The property has windows with two panes of glass. */ DoublePaneWindows = 'DoublePaneWindows', /** * {@link https://ddwiki.reso.org/display/DDW17/Drapes} * * The property has drapes. */ Drapes = 'Drapes', /** * {@link https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+Windows} * * The property has ENERGY STAR Qualified windows. */ EnergyStarQualifiedWindows = 'EnergyStarQualifiedWindows', /** * The property has one or more garden windows. */ GardenWindows = 'GardenWindows', /** * {@link https://ddwiki.reso.org/display/DDW17/Insulated+Windows} * * The property has insulated windows. */ InsulatedWindows = 'InsulatedWindows', /** * {@link https://ddwiki.reso.org/display/DDW17/Low+Emissivity+Windows} * * The property has low emissivity windows. */ LowEmissivityWindows = 'LowEmissivityWindows', /** * {@link https://ddwiki.reso.org/display/DDW17/Plantation+Shutters} * * The property has plantation shutters. */ PlantationShutters = 'PlantationShutters', /** * {@link https://ddwiki.reso.org/display/DDW17/Screens} * * The property has screens. */ Screens = 'Screens', /** * {@link https://ddwiki.reso.org/display/DDW17/Shutters} * * The property has shutters. */ Shutters = 'Shutters', /** * The property has skylight(s). */ Skylights = 'Skylights', /** * {@link https://ddwiki.reso.org/display/DDW17/Solar+Screens} * * The property has solar screens. */ SolarScreens = 'SolarScreens', /** * The property has storm window(s). */ StormWindows = 'StormWindows', /** * {@link https://ddwiki.reso.org/display/DDW17/Tinted+Windows} * * The property has tinted windows. */ TintedWindows = 'TintedWindows', /** * {@link https://ddwiki.reso.org/display/DDW17/Triple+Pane+Windows} * * The property has triple pane windows. */ TriplePaneWindows = 'TriplePaneWindows', /** * {@link https://ddwiki.reso.org/display/DDW17/Window+Coverings} * * The property has window coverings. */ WindowCoverings = 'WindowCoverings', /** * {@link https://ddwiki.reso.org/display/DDW17/Window+Treatments} * * The property has window treatments. */ WindowTreatments = 'WindowTreatments', /** * {@link https://ddwiki.reso.org/display/DDW17/Wood+Frames} * * The property has wood framed windows. */ WoodFrames = 'WoodFrames', }