UNPKG

@realestate/types

Version:

Types for real estate

106 lines (88 loc) 2.85 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 StructureType { /** * A single family residence that may have limited utilities and rooms. */ Cabin = 'Cabin', /** * A floating or pillar supported structure over water used to park water craft. */ Dock = 'Dock', /** * A multi family structure with two independent units sharing a common roof. */ Duplex = 'Duplex', /** * {@link https://ddwiki.reso.org/display/DDW17/Flex} * * A commercial property that is designed to be used in different ways. e.g. Office, Retail or Warehouse. */ Flex = 'Flex', /** * A commercial structure designed to be a hotel or motel. */ HotelMotel = 'HotelMotel', /** * {@link https://ddwiki.reso.org/display/DDW17/House} * * A single family residence on real property either attached or detached from another structure. A house * may be modular (aka prefabricated), but not a manufactured home with serial/license number. */ House = 'House', /** * A commercial structure designed for industrial use. */ Industrial = 'Industrial', /** * {@link https://ddwiki.reso.org/display/DDW17/Manufactured+House} * * A factory built house that is transported to the lot. A manufactured home will have a serial/license * number, where prefabricated (modular) homes are classified with stick built as "House" in this list. */ ManufacturedHouse = 'ManufacturedHouse', /** * The property is designed be used in more than one way. This is typically a combination of residential * and commercial space. e.g. a dwelling over a retail space. */ MixedUse = 'MixedUse', /** * A structure or complex with 5 or more units that are individual dwellings. */ MultiFamily = 'MultiFamily', /** * The property has no structure. */ None = 'None', /** * A commercial structure designed to be used as office space. */ Office = 'Office', /** * A multi family structure with four independent units sharing a common roof. */ Quadruplex = 'Quadruplex', /** * A commercial structure designed to be used for retail space. */ Retail = 'Retail', /** * A dwelling unit, generally having two or more floors and attached to other similar units via party walls. */ Townhouse = 'Townhouse', /** * A multi family structure with three independent units sharing a common roof. */ Triplex = 'Triplex', /** * A commercial structure designed for warehousing. */ Warehouse = 'Warehouse', }