UNPKG

@realestate/types

Version:

Types for real estate

82 lines (71 loc) 2.26 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 SpecialListingConditions { /** * {@link https://ddwiki.reso.org/display/DDW17/Auction} * * The listing is an auction. */ Auction = 'Auction', /** * {@link https://ddwiki.reso.org/display/DDW17/Bankruptcy+Property} * * The listed property is currently involved in a bankruptcy. */ BankruptcyProperty = 'BankruptcyProperty', /** * {@link https://ddwiki.reso.org/display/DDW17/HUD+Owned} * * The listed property is owned, and being sold, by the US Department of Housing and Urban Development. */ HudOwned = 'HudOwned', /** * {@link https://ddwiki.reso.org/display/DDW17/In+Foreclosure} * * The listed property is currently in the process of foreclosure. */ InForeclosure = 'InForeclosure', /** * {@link https://ddwiki.reso.org/display/DDW17/Notice+Of+Default} * * There is a notice of default on the listed property. */ NoticeOfDefault = 'NoticeOfDefault', /** * {@link https://ddwiki.reso.org/display/DDW17/Probate+Listing} * * The listed property is a probate sale. */ ProbateListing = 'ProbateListing', /** * {@link https://ddwiki.reso.org/display/DDW17/Real+Estate+Owned} * * The listed property is currently bank/lender owned. */ RealEstateOwned = 'RealEstateOwned', /** * {@link https://ddwiki.reso.org/display/DDW17/Short+Sale} * * The listing is a short sale (short pay) and may require bank approval. */ ShortSale = 'ShortSale', /** * {@link https://ddwiki.reso.org/display/DDW17/Standard} * * The listing has none of the other conditions in the Special Listing Conditions field. */ Standard = 'Standard', /** * {@link https://ddwiki.reso.org/display/DDW17/Third+Party+Approval} * * A court or other third party approval is required for the sale to finalize. */ ThirdPartyApproval = 'ThirdPartyApproval', }