UNPKG

@realestate/types

Version:

Types for real estate

76 lines (65 loc) 1.66 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 Vegetation { /** * {@link https://ddwiki.reso.org/display/DDW17/Brush} * * The lot has brush. */ Brush = 'Brush', /** * {@link https://ddwiki.reso.org/display/DDW17/Cleared} * * The lot has been cleared. */ Cleared = 'Cleared', /** * There are crops on the lot. */ Crops = 'Crops', /** * {@link https://ddwiki.reso.org/display/DDW17/Grassed} * * The lot is grassed. */ Grassed = 'Grassed', /** * {@link https://ddwiki.reso.org/display/DDW17/Heavily+Wooded} * * The lot is heavily wooded. */ HeavilyWooded = 'HeavilyWooded', /** * {@link https://ddwiki.reso.org/display/DDW17/Natural+State} * * The lot is in its natural state. */ NaturalState = 'NaturalState', /** * There are other types of vegetation on the lot than those in this list. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Partially+Wooded} * * The lot is partially wooded. */ PartiallyWooded = 'PartiallyWooded', /** * See the Public or Private Remarks for details about the vegetation found on the lot. */ SeeRemarks = 'SeeRemarks', /** * {@link https://ddwiki.reso.org/display/DDW17/Wooded} * * The lot is wooded. */ Wooded = 'Wooded', }