UNPKG

@realestate/types

Version:

Types for real estate

31 lines (27 loc) 851 B
/** * 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 UnitsFurnished { /** * {@link https://ddwiki.reso.org/display/DDW17/All+Units} * * All of the units in the listed income property are furnished. */ AllUnits = 'AllUnits', /** * None of the units in the listed income property are furnished. */ None = 'None', /** * {@link https://ddwiki.reso.org/display/DDW17/Varies+By+Unit} * * Some of the units in the listing income property are furnished. */ VariesByUnit = 'VariesByUnit', }