UNPKG

@realestate/types

Version:

Types for real estate

236 lines (199 loc) 5.12 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 Flooring { /** * The property includes adobe flooring. */ Adobe = 'Adobe', /** * {@link https://ddwiki.reso.org/display/DDW17/Bamboo} * * The property includes bamboo flooring. */ Bamboo = 'Bamboo', /** * The property includes brick flooring. */ Brick = 'Brick', /** * {@link https://ddwiki.reso.org/display/DDW17/Carpet} * * The property includes carpet flooring. */ Carpet = 'Carpet', /** * {@link https://ddwiki.reso.org/display/DDW17/Ceramic+Tile} * * The property includes ceramic tile flooring. */ CeramicTile = 'CeramicTile', /** * {@link https://ddwiki.reso.org/display/DDW17/Clay} * * The property includes clay flooring. */ Clay = 'Clay', /** * The property includes combination flooring. */ Combination = 'Combination', /** * The property includes concrete flooring. */ Concrete = 'Concrete', /** * {@link https://ddwiki.reso.org/display/DDW17/Cork} * * The property includes cork flooring. */ Cork = 'Cork', /** * {@link https://ddwiki.reso.org/display/DDW17/CRI+Green+Label+Plus+Certified+Carpet} * * The property includes CRI Green Label Plus certified carpet flooring. */ CriGreenLabelPlusCertifiedCarpet = 'CriGreenLabelPlusCertifiedCarpet', /** * The property has dirt flooring. */ Dirt = 'Dirt', /** * {@link https://ddwiki.reso.org/display/DDW17/FloorScore%28r%29+Certified+Flooring} * * The property includes FloorScore(r) certified flooring . */ FloorscoreCertifiedFlooring = 'FloorscoreCertifiedFlooring', /** * {@link https://ddwiki.reso.org/display/DDW17/FSC+or+SFI+Certified+Source+Hardwood} * * The property includes FSC or SFI certified source hardwood flooring. */ FscOrSfiCertifiedSourceHardwood = 'FscOrSfiCertifiedSourceHardwood', /** * {@link https://ddwiki.reso.org/display/DDW17/Granite} * * The property includes granite flooring. */ Granite = 'Granite', /** * {@link https://ddwiki.reso.org/display/DDW17/Hardwood} * * The property includes hardwood flooring. */ Hardwood = 'Hardwood', /** * {@link https://ddwiki.reso.org/display/DDW17/Laminate} * * The property includes laminate flooring. */ Laminate = 'Laminate', /** * {@link https://ddwiki.reso.org/display/DDW17/Linoleum} * * The property includes linoleum flooring. */ Linoleum = 'Linoleum', /** * {@link https://ddwiki.reso.org/display/DDW17/Marble} * * The property includes marble flooring. */ Marble = 'Marble', /** * The property has no flooring. */ None = 'None', /** * The property includes flooring that is not included in this list. */ Other = 'Other', /** * The property includes painted or stained flooring. */ PaintedStained = 'PaintedStained', /** * {@link https://ddwiki.reso.org/display/DDW17/Parquet} * * The property includes parquet flooring. */ Parquet = 'Parquet', /** * {@link https://ddwiki.reso.org/display/DDW17/Pavers} * * The property includes flooring pavers. */ Pavers = 'Pavers', /** * {@link https://ddwiki.reso.org/display/DDW17/Reclaimed+Wood} * * The property includes reclaimed wood flooring. */ ReclaimedWood = 'ReclaimedWood', /** * See the remarks field for additional information about the flooring included with the property. */ SeeRemarks = 'SeeRemarks', /** * {@link https://ddwiki.reso.org/display/DDW17/Simulated+Wood} * * The property includes simulated wood flooring. */ SimulatedWood = 'SimulatedWood', /** * The property includes slate flooring. */ Slate = 'Slate', /** * {@link https://ddwiki.reso.org/display/DDW17/Softwood} * * The property includes softwood flooring. */ Softwood = 'Softwood', /** * {@link https://ddwiki.reso.org/display/DDW17/Stamped} * * The property includes stamped flooring. */ Stamped = 'Stamped', /** * The property includes stone flooring. */ Stone = 'Stone', /** * {@link https://ddwiki.reso.org/display/DDW17/Sustainable} * * The property includes sustainable flooring. */ Sustainable = 'Sustainable', /** * {@link https://ddwiki.reso.org/display/DDW17/Terrazzo} * * The property includes terrazzo flooring. */ Terrazzo = 'Terrazzo', /** * The property includes tile flooring. */ Tile = 'Tile', /** * {@link https://ddwiki.reso.org/display/DDW17/Varies} * * The property flooring type varies. */ Varies = 'Varies', /** * The property includes vinyl flooring. */ Vinyl = 'Vinyl', /** * The property includes wood flooring. */ Wood = 'Wood', }