UNPKG

@realestate/types

Version:

Types for real estate

127 lines (109 loc) 3.42 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 ClassName { /** * {@link https://ddwiki.reso.org/display/DDW17/Business+Opportunity} * * The class, sometimes known as property type, is a business for sale. */ BusinessOpportunity = 'BusinessOpportunity', /** * {@link https://ddwiki.reso.org/display/DDW17/Commercial+Lease} * * The class, sometimes known as property type, is a commercial property for lease. */ CommercialLease = 'CommercialLease', /** * {@link https://ddwiki.reso.org/display/DDW17/Commercial+Sale} * * The class, sometimes known as property type, is a commercial property for sale. */ CommercialSale = 'CommercialSale', /** * {@link https://ddwiki.reso.org/display/DDW17/Contacts} * * The class is the collection of the member's contacts/clients. */ Contacts = 'Contacts', /** * {@link https://ddwiki.reso.org/display/DDW17/Cross+Property} * * The class, sometimes known as property type, is a collection of all listing property types. */ CrossProperty = 'CrossProperty', /** * The class, sometimes known as property type, is a farm. */ Farm = 'Farm', /** * {@link https://ddwiki.reso.org/display/DDW17/History+Transactional} * * The class is the transactional history of another class. */ HistoryTransactional = 'HistoryTransactional', /** * {@link https://ddwiki.reso.org/display/DDW17/Land} * * The class, sometimes known as property type, is land for sale or lease. */ Land = 'Land', /** * {@link https://ddwiki.reso.org/display/DDW17/Manufactured+In+Park} * * The class, sometimes known as property type, is a manufactured or mobile home in a mobile park. */ ManufacturedInPark = 'ManufacturedInPark', /** * {@link https://ddwiki.reso.org/display/DDW17/Media} * * The class is one that contains records referencing media files. */ Media = 'Media', /** * {@link https://ddwiki.reso.org/display/DDW17/Member} * * The class containing member records. */ Member = 'Member', /** * {@link https://ddwiki.reso.org/display/DDW17/Office} * * The class containing office records. */ Office = 'Office', /** * {@link https://ddwiki.reso.org/display/DDW17/Open+House} * * The class containing Open House records. */ OpenHouse = 'OpenHouse', /** * The class, sometimes known as property type, is residential property for sale. */ Residential = 'Residential', /** * {@link https://ddwiki.reso.org/display/DDW17/Residential+Income} * * The class, sometimes known as property type, is income or multi-family property for sale. */ ResidentialIncome = 'ResidentialIncome', /** * {@link https://ddwiki.reso.org/display/DDW17/Residential+Lease} * * The class, sometimes known as property type, is residential property for lease. */ ResidentialLease = 'ResidentialLease', /** * {@link https://ddwiki.reso.org/display/DDW17/Saved+Search} * * The class containing saved search data. */ SavedSearch = 'SavedSearch', }