UNPKG

@realestate/types

Version:

Types for real estate

281 lines (236 loc) 6.33 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 FireplaceFeatures { /** * There is a fireplace in the basement. */ Basement = 'Basement', /** * {@link https://ddwiki.reso.org/display/DDW17/Bath} * * The property includes a bathroom fireplace. */ Bath = 'Bath', /** * The property has a bedroom fireplace. */ Bedroom = 'Bedroom', /** * {@link https://ddwiki.reso.org/display/DDW17/Blower+Fan} * * The fireplace has a blower fan. */ BlowerFan = 'BlowerFan', /** * {@link https://ddwiki.reso.org/display/DDW17/Circulating} * * The fireplace has a circulation system. */ Circulating = 'Circulating', /** * {@link https://ddwiki.reso.org/display/DDW17/Decorative} * * The property has a decorative fireplace. */ Decorative = 'Decorative', /** * The property has a fireplace in the den. */ Den = 'Den', /** * The property has a fireplace in the dining room. */ DiningRoom = 'DiningRoom', /** * {@link https://ddwiki.reso.org/display/DDW17/Double+Sided} * * The property has a double sided fireplace. Double sided fireplaces often have openings in adjacent * rooms. */ DoubleSided = 'DoubleSided', /** * The fireplace is electric. */ Electric = 'Electric', /** * {@link https://ddwiki.reso.org/display/DDW17/EPA+Certified+Wood+Stove} * * The property has an EPA certified wood stove. */ EpaCertifiedWoodStove = 'EpaCertifiedWoodStove', /** * {@link https://ddwiki.reso.org/display/DDW17/EPA+Qualified+Fireplace} * * The property has an EPA certified fireplace. */ EpaQualifiedFireplace = 'EpaQualifiedFireplace', /** * {@link https://ddwiki.reso.org/display/DDW17/Factory+Built} * * The fireplace is factory built and later installed into the property. */ FactoryBuilt = 'FactoryBuilt', /** * There is a fireplace in the family room. */ FamilyRoom = 'FamilyRoom', /** * The property has a fire pit. */ FirePit = 'FirePit', /** * {@link https://ddwiki.reso.org/display/DDW17/Free+Standing} * * The fireplace is free standing, rather than built-in. */ FreeStanding = 'FreeStanding', /** * The fireplace burns gas. */ Gas = 'Gas', /** * {@link https://ddwiki.reso.org/display/DDW17/Gas+Log} * * The gas fireplace has a gas log. */ GasLog = 'GasLog', /** * {@link https://ddwiki.reso.org/display/DDW17/Gas+Starter} * * The fireplace has a gas started, but also burns wood or other fuels. */ GasStarter = 'GasStarter', /** * {@link https://ddwiki.reso.org/display/DDW17/Glass+Doors} * * The fireplace has glass doors. */ GlassDoors = 'GlassDoors', /** * There is a fireplace in the great room. */ GreatRoom = 'GreatRoom', /** * {@link https://ddwiki.reso.org/display/DDW17/Heatilator} * * The fireplace has a built in ventilation system used to circulate heat. */ Heatilator = 'Heatilator', /** * {@link https://ddwiki.reso.org/display/DDW17/Insert} * * A fireplace insert is a device inserted into an existing masonry or prefabricated fireplace. Inserts are * used for their aesthetic, insulating, circulating or other features. */ Insert = 'Insert', /** * The property has a fireplace in the kitchen. */ Kitchen = 'Kitchen', /** * The property has a fireplace in the library. */ Library = 'Library', /** * The property has a fireplace in the living room. */ LivingRoom = 'LivingRoom', /** * The fireplace is made of masonry. */ Masonry = 'Masonry', /** * The property has a fireplace in the master bedroom. */ MasterBedroom = 'MasterBedroom', /** * The fireplace is make of metal. */ Metal = 'Metal', /** * The property has no fireplace. */ None = 'None', /** * The fireplace has features that are not included in this list. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Outside} * * The property has an outdoor fireplace. */ Outside = 'Outside', /** * {@link https://ddwiki.reso.org/display/DDW17/Pellet+Stove} * * The property has a stove that burns compressed wood or biomass pellets to generate heat. */ PelletStove = 'PelletStove', /** * The fireplace burns propane. */ Propane = 'Propane', /** * {@link https://ddwiki.reso.org/display/DDW17/Raised+Hearth} * * The fireplace has a raised hearth. */ RaisedHearth = 'RaisedHearth', /** * The property has a fireplace in the recreation room. */ RecreationRoom = 'RecreationRoom', /** * {@link https://ddwiki.reso.org/display/DDW17/Sealed+Combustion} * * The fireplace has sealed combustion chamber. */ SealedCombustion = 'SealedCombustion', /** * See the remarks fields for additional information about the fireplace(s). */ SeeRemarks = 'SeeRemarks', /** * {@link https://ddwiki.reso.org/display/DDW17/See+Through} * * The property has a see-through fireplace, usually positioned between two rooms. */ SeeThrough = 'SeeThrough', /** * The property has a fireplace made with stone. */ Stone = 'Stone', /** * {@link https://ddwiki.reso.org/display/DDW17/Ventless} * * The property has a ventless fireplace. */ Ventless = 'Ventless', /** * {@link https://ddwiki.reso.org/display/DDW17/Wood+Burning} * * The fireplace is wood burning. */ WoodBurning = 'WoodBurning', /** * {@link https://ddwiki.reso.org/display/DDW17/Wood+Burning+Stove} * * The property includes a wood burning stove. */ WoodBurningStove = 'WoodBurningStove', /** * {@link https://ddwiki.reso.org/display/DDW17/Zero+Clearance} * * The property has a zero clearance fireplace. Zero clearance fireplaces are built to be placed almost * directly against combustible materials like wood, walls, or paneling. */ ZeroClearance = 'ZeroClearance', }