UNPKG

@realestate/types

Version:

Types for real estate

74 lines (63 loc) 1.85 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 DevelopmentStatus { /** * {@link https://ddwiki.reso.org/display/DDW17/Completed} * * The development of the land is complete. */ Completed = 'Completed', /** * The development of the land is finished. */ FinishedLots = 'FinishedLots', /** * The development status of the land is something other than those options in this list. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Proposed} * * The development of the land is in the proposal phase. */ Proposed = 'Proposed', /** * {@link https://ddwiki.reso.org/display/DDW17/Raw+Land} * * The land is raw and undeveloped. */ RawLand = 'RawLand', /** * {@link https://ddwiki.reso.org/display/DDW17/Rough+Grade} * * The development of the last is in the rough grade phase. */ RoughGrade = 'RoughGrade', /** * See the Public or Private remarks for details on the development status of the land. */ SeeRemarks = 'SeeRemarks', /** * {@link https://ddwiki.reso.org/display/DDW17/Site+Plan+Approved} * * The site plan has been approved for the development. */ SitePlanApproved = 'SitePlanApproved', /** * {@link https://ddwiki.reso.org/display/DDW17/Site+Plan+Filed} * * The site plan has been filed for the development. */ SitePlanFiled = 'SitePlanFiled', /** * There is construction in progress at the development. */ UnderConstruction = 'UnderConstruction', }