UNPKG

@realestate/types

Version:

Types for real estate

38 lines (33 loc) 1.07 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 PropertyCondition { /** * {@link https://ddwiki.reso.org/display/DDW17/Fixer} * * The property is a "fixer" or property in need of moderate or extensive repair. */ Fixer = 'Fixer', /** * {@link https://ddwiki.reso.org/display/DDW17/New+Construction} * * The property is newly built. */ NewConstruction = 'NewConstruction', /** * {@link https://ddwiki.reso.org/display/DDW17/Under+Construction} * * The property is still under construction and building has not been completed. */ UnderConstruction = 'UnderConstruction', /** * The property has been remolded or updated is some fashion. */ UpdatedRemodeled = 'UpdatedRemodeled', }