UNPKG

@realestate/types

Version:

Types for real estate

76 lines (65 loc) 1.74 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 LeaseTerm { /** * {@link https://ddwiki.reso.org/display/DDW17/Month+To+Month} * * The length of the lease is month to month. */ MonthToMonth = 'MonthToMonth', /** * {@link https://ddwiki.reso.org/display/DDW17/Negotiable} * * The length of the lease is negotiable. */ Negotiable = 'Negotiable', /** * There is no stated term to the lease. */ None = 'None', /** * The term of the lease is something other than is available in this list. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Renewal+Option} * * The lease has a renewal option. */ RenewalOption = 'RenewalOption', /** * {@link https://ddwiki.reso.org/display/DDW17/Short+Term+Lease} * * The lease is short term. */ ShortTermLease = 'ShortTermLease', /** * {@link https://ddwiki.reso.org/display/DDW17/6+Months} * * The length of the lease is 6 months. */ SixMonths = 'SixMonths', /** * {@link https://ddwiki.reso.org/display/DDW17/12+Months} * * The length of the lease is 12 months. */ TwelveMonths = 'TwelveMonths', /** * {@link https://ddwiki.reso.org/display/DDW17/24+Months} * * The length of the lease is 24 months. */ TwentyFourMonths = 'TwentyFourMonths', /** * The length of the lease is weekly. */ Weekly = 'Weekly', }