UNPKG

@realestate/types

Version:

Types for real estate

66 lines (56 loc) 2.2 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 PropertyType { /** * The property type of the listing is Business Opportunity. The property type can be references as a class * or a field within a single class structure. */ BusinessOpportunity = 'BusinessOpportunity', /** * The property type of the listing is Commercial Lease. The property type can be references as a class or a * field within a single class structure. */ CommercialLease = 'CommercialLease', /** * The property type of the listing is Commercial Sale. The property type can be references as a class or a * field within a single class structure. */ CommercialSale = 'CommercialSale', /** * The property type of the listing is Farm. The property type can be references as a class or a field * within a single class structure. */ Farm = 'Farm', /** * The property type of the listing is Land. The property type can be references as a class or a field * within a single class structure. */ Land = 'Land', /** * The property type of the listing is Manufactured in Park. The property type can be references as a class * or a field within a single class structure. */ ManufacturedInPark = 'ManufacturedInPark', /** * The property type of the listing is Residential. The property type can be references as a class or a * field within a single class structure. */ Residential = 'Residential', /** * The property type of the listing is Residential Income. The property type can be references as a class * or a field within a single class structure. */ ResidentialIncome = 'ResidentialIncome', /** * The property type of the listing is Residential Lease. The property type can be references as a class or * a field within a single class structure. */ ResidentialLease = 'ResidentialLease', }