UNPKG

@realestate/types

Version:

Types for real estate

78 lines (67 loc) 1.75 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 UnitTypeType { /** * {@link https://ddwiki.reso.org/display/DDW17/Apartments} * * The type of unit is apartments. */ Apartments = 'Apartments', /** * {@link https://ddwiki.reso.org/display/DDW17/Efficiency} * * The type of unit is an efficiency. */ Efficiency = 'Efficiency', /** * {@link https://ddwiki.reso.org/display/DDW17/4+Bedroom+Or+More} * * The type of unit is a 4 or more bedroom. */ FourBedroomOrMore = 'FourBedroomOrMore', /** * The type of unit is a loft. */ Loft = 'Loft', /** * {@link https://ddwiki.reso.org/display/DDW17/Manager%27s+Unit} * * The type of unit is a manager's unit. */ ManagersUnit = 'ManagersUnit', /** * {@link https://ddwiki.reso.org/display/DDW17/1+Bedroom} * * The type of unit is a 1 bedroom. */ OneBedroom = 'OneBedroom', /** * {@link https://ddwiki.reso.org/display/DDW17/Penthouse} * * The type of unit is a penthouse. */ Penthouse = 'Penthouse', /** * The type of unit is a studio. */ Studio = 'Studio', /** * {@link https://ddwiki.reso.org/display/DDW17/3+Bedroom} * * The type of unit is a 3 bedroom. */ ThreeBedroom = 'ThreeBedroom', /** * {@link https://ddwiki.reso.org/display/DDW17/2+Bedroom} * * The type of unit is a 2 bedroom. */ TwoBedroom = 'TwoBedroom', }