UNPKG

@realestate/types

Version:

Types for real estate

232 lines (196 loc) 4.82 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 PoolFeatures { /** * {@link https://ddwiki.reso.org/display/DDW17/Above+Ground} * * The pool is above ground. */ AboveGround = 'AboveGround', /** * The pool is an association pool. */ Association = 'Association', /** * {@link https://ddwiki.reso.org/display/DDW17/Black+Bottom} * * The pool has a black bottom. */ BlackBottom = 'BlackBottom', /** * The pool has a cabana. */ Cabana = 'Cabana', /** * The pool is a community/shared pool. */ Community = 'Community', /** * {@link https://ddwiki.reso.org/display/DDW17/Diving+Board} * * The pool has a diving board. */ DivingBoard = 'DivingBoard', /** * {@link https://ddwiki.reso.org/display/DDW17/Electric+Heat} * * The pool is heated by electricity. */ ElectricHeat = 'ElectricHeat', /** * {@link https://ddwiki.reso.org/display/DDW17/ENERGY+STAR+Qualified+pool+pump} * * The pool has an ENERGY STAR Qualified pool pump. */ EnergyStarQualifiedPoolPump = 'EnergyStarQualifiedPoolPump', /** * The pool is fenced. */ Fenced = 'Fenced', /** * The pool is made of or lined with fiberglass. */ Fiberglass = 'Fiberglass', /** * {@link https://ddwiki.reso.org/display/DDW17/Filtered} * * The pool has a filtration system. */ Filtered = 'Filtered', /** * {@link https://ddwiki.reso.org/display/DDW17/Gas+Heat} * * The pool is heated by gas. */ GasHeat = 'GasHeat', /** * {@link https://ddwiki.reso.org/display/DDW17/Gunite} * * The pool has a gunite surface. */ Gunite = 'Gunite', /** * {@link https://ddwiki.reso.org/display/DDW17/Heated} * * The pool is heated. */ Heated = 'Heated', /** * {@link https://ddwiki.reso.org/display/DDW17/Indoor} * * The pool is indoors or within a structure. */ Indoor = 'Indoor', /** * {@link https://ddwiki.reso.org/display/DDW17/Infinity} * * Also named a negative edge, zero edge or infinity edge, an infinity pool has one or more edges where * water flows over the edge creating a visual effect of water with no boundary. */ Infinity = 'Infinity', /** * {@link https://ddwiki.reso.org/display/DDW17/In+Ground} * * The pool is built into the ground. */ InGround = 'InGround', /** * {@link https://ddwiki.reso.org/display/DDW17/Lap} * * The pool is specifically designed for swimming laps. */ Lap = 'Lap', /** * {@link https://ddwiki.reso.org/display/DDW17/Liner} * * The pool has a liner. */ Liner = 'Liner', /** * There is no pool included with the property. */ None = 'None', /** * There are pool features other than those included in this list. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Outdoor+Pool} * * The pool is outdoors. */ OutdoorPool = 'OutdoorPool', /** * {@link https://ddwiki.reso.org/display/DDW17/Pool+Cover} * * The pool has a cover. */ PoolCover = 'PoolCover', /** * The pool includes a spa. */ PoolSpaCombo = 'PoolSpaCombo', /** * {@link https://ddwiki.reso.org/display/DDW17/Pool+Sweep} * * The pool has an automatic sweep or cleaner. */ PoolSweep = 'PoolSweep', /** * The pool is privately owned and/or secluded. */ Private = 'Private', /** * {@link https://ddwiki.reso.org/display/DDW17/Salt+Water} * * The pool has a salt water system. */ SaltWater = 'SaltWater', /** * {@link https://ddwiki.reso.org/display/DDW17/Screen+Enclosure} * * The pool has a screened enclosure. */ ScreenEnclosure = 'ScreenEnclosure', /** * See the remarks fields for more information about the pool. */ SeeRemarks = 'SeeRemarks', /** * {@link https://ddwiki.reso.org/display/DDW17/Solar+Cover} * * The pool has a solar cover. */ SolarCover = 'SolarCover', /** * {@link https://ddwiki.reso.org/display/DDW17/Solar+Heat} * * The pool has some form of solar heating. */ SolarHeat = 'SolarHeat', /** * {@link https://ddwiki.reso.org/display/DDW17/Sport} * * The pool has two shallow ends on opposite sides of the pool with a deeper center. */ Sport = 'Sport', /** * The pool is tiled. */ Tile = 'Tile', /** * The pool has a vinyl surface. */ Vinyl = 'Vinyl', /** * The pool has a waterfall. */ Waterfall = 'Waterfall', }