UNPKG

@realestate/types

Version:

Types for real estate

188 lines (161 loc) 5.09 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 ListingTerms { /** * {@link https://ddwiki.reso.org/display/DDW17/All+Inclusive+Trust+Deed} * * The property is under an all inclusive trust deed. */ AllInclusiveTrustDeed = 'AllInclusiveTrustDeed', /** * The seller is interested in assumable financing. */ Assumable = 'Assumable', /** * The seller would like a cash sale. */ Cash = 'Cash', /** * The seller may be interested in an agreement to perform services, provide product, share of income, or * some other agreement as the method of payment for the property. */ Contract = 'Contract', /** * The seller may accept a buyer using conventional financing to purchase the home. */ Conventional = 'Conventional', /** * {@link https://ddwiki.reso.org/display/DDW17/1031+Exchange} * * The seller is may be interested in a 1031 exchange as part of the sale. */ Exchange1031 = 'Exchange1031', /** * {@link https://ddwiki.reso.org/display/DDW17/Existing+Bonds} * * The property for sale has existing bonds. */ ExistingBonds = 'ExistingBonds', /** * The seller may accept a buyer with a loan from an approved provider that follows the guidelines of, and * is insured by, the Federal Housing Administration. */ FHA = 'FHA', /** * {@link https://ddwiki.reso.org/display/DDW17/Land+Use+Fee} * * The listed property has a land use fee. */ LandUseFee = 'LandUseFee', /** * {@link https://ddwiki.reso.org/display/DDW17/Lease+Back} * * The seller may be interested in the simultaneous sale of a property with a lease back to the seller, who * then becomes the tenant. */ LeaseBack = 'LeaseBack', /** * {@link https://ddwiki.reso.org/display/DDW17/Lease+Option} * * The seller may be interested in selling as a lease option to the buyer. */ LeaseOption = 'LeaseOption', /** * {@link https://ddwiki.reso.org/display/DDW17/Lease+Purchase} * * The seller may be interested in selling as a lease purchase. */ LeasePurchase = 'LeasePurchase', /** * {@link https://ddwiki.reso.org/display/DDW17/Lien+Release} * * The property for sale may require a lien release. */ LienRelease = 'LienRelease', /** * {@link https://ddwiki.reso.org/display/DDW17/Owner+May+Carry} * * The seller may be interested in carrying the mortgage note. */ OwnerMayCarry = 'OwnerMayCarry', /** * {@link https://ddwiki.reso.org/display/DDW17/Owner+Pay+Points} * * The seller may carry points. */ OwnerPayPoints = 'OwnerPayPoints', /** * {@link https://ddwiki.reso.org/display/DDW17/Owner+Will+Carry} * * The seller will carry points. */ OwnerWillCarry = 'OwnerWillCarry', /** * {@link https://ddwiki.reso.org/display/DDW17/Private+Financing+Available} * * Financing is provided by a private party. */ PrivateFinancingAvailable = 'PrivateFinancingAvailable', /** * {@link https://ddwiki.reso.org/display/DDW17/Relocation+Property} * * The property for sale is a relocation property. */ RelocationProperty = 'RelocationProperty', /** * {@link https://ddwiki.reso.org/display/DDW17/Seller+Equity+Share} * * The seller may be interested in investing in an equity share. */ SellerEquityShare = 'SellerEquityShare', /** * {@link https://ddwiki.reso.org/display/DDW17/Special+Funding} * * The seller may be interested in a special funding arrangement. */ SpecialFunding = 'SpecialFunding', /** * {@link https://ddwiki.reso.org/display/DDW17/Submit} * * Contact the listing agent for the listing terms. */ Submit = 'Submit', /** * {@link https://ddwiki.reso.org/display/DDW17/Trade} * * The seller may be interested in a trade arrangement. */ Trade = 'Trade', /** * {@link https://ddwiki.reso.org/display/DDW17/Trust+Conveyance} * * A trust conveyance (to another trustee) may be involved in the sale of the property. */ TrustConveyance = 'TrustConveyance', /** * The seller may accept financing where title of the property is placed with a trustee who secures payment * of the loan for a beneficiary. */ TrustDeed = 'TrustDeed', /** * {@link https://ddwiki.reso.org/display/DDW17/USDA+Loan} * * The seller may accept a loan from an approved provider that follows the guidelines of, and is insured by, * the US Department of Agriculture. */ UsdaLoan = 'UsdaLoan', /** * {@link https://ddwiki.reso.org/display/DDW17/VA+Loan} * * The seller may accept a loan from an approved provider that follows the guidelines of, and is insured by, * the US Department of Veteran's Affairs. */ VaLoan = 'VaLoan', }