UNPKG

@realestate/types

Version:

Types for real estate

104 lines (90 loc) 2.92 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 BuyerFinancing { /** * {@link https://ddwiki.reso.org/display/DDW17/Assumed} * * The buyer assumed a current form of financing. */ Assumed = 'Assumed', /** * {@link https://ddwiki.reso.org/display/DDW17/Cash} * * The buyer paid cash for the property. */ Cash = 'Cash', /** * {@link https://ddwiki.reso.org/display/DDW17/Contract} * * The purchase of a property involves an agreement to perform services, provide product, share of income, * or some other agreement as the method of payment for the property. */ Contract = 'Contract', /** * {@link https://ddwiki.reso.org/display/DDW17/Conventional} * * The buyer is using conventional financing to purchase the home. */ Conventional = 'Conventional', /** * {@link https://ddwiki.reso.org/display/DDW17/FHA} * * A loan from an approved provider that follows the guidelines of, and is insured by, the Federal Housing * Administration. */ FHA = 'FHA', /** * The basic home mortgage loan from an approved provider that follows the guidelines of, and is insured by, * the Federal Housing Administration. */ FHA203b = 'FHA203b', /** * A loan, for the rehabilitation and repair of single family residence, from an approved provider that * follows the guidelines of, and is insured by, the Federal Housing Administration. */ FHA203k = 'FHA203k', /** * The buyer is using another form of financing that is not included in the options provided in this list. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Private} * * Financing is provided by a private party. */ Private = 'Private', /** * {@link https://ddwiki.reso.org/display/DDW17/Seller+Financing} * * The seller is providing financing to the buyer. */ SellerFinancing = 'SellerFinancing', /** * {@link https://ddwiki.reso.org/display/DDW17/Trust+Deed} * * 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} * * A loan from an approved provider that follows the guidelines of, and is insured by, the US Department of * Agriculture. */ USDA = 'USDA', /** * {@link https://ddwiki.reso.org/display/DDW17/VA} * * A loan from an approved provider that follows the guidelines of, and is insured by, the US Department of * Veteran's Affairs. */ VA = 'VA', }