UNPKG

@realestate/types

Version:

Types for real estate

54 lines (47 loc) 1.3 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 ContactType { /** * {@link https://ddwiki.reso.org/display/DDW17/Business} * * The contact is a business relation. */ Business = 'Business', /** * {@link https://ddwiki.reso.org/display/DDW17/Family} * * The contact is a family member. */ Family = 'Family', /** * {@link https://ddwiki.reso.org/display/DDW17/Friend} * * The contact is a personal friend. */ Friend = 'Friend', /** * {@link https://ddwiki.reso.org/display/DDW17/Lead} * * The lead is a contact that may be a potential buyer or seller to the member. */ Lead = 'Lead', /** * {@link https://ddwiki.reso.org/display/DDW17/Prospect} * * The contact is a prospective client. */ Prospect = 'Prospect', /** * {@link https://ddwiki.reso.org/display/DDW17/Ready+to+Buy} * * The contact is a client who is ready to start a transaction. */ ReadyToBuy = 'ReadyToBuy', }