UNPKG

@realestate/types

Version:

Types for real estate

145 lines (123 loc) 3.44 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 OtherEquipment { /** * {@link https://ddwiki.reso.org/display/DDW17/Air+Purifier} * * The property includes an air purifier. */ AirPurifier = 'AirPurifier', /** * Call the listing agent for more information about other equipment included with the property. */ CallListingAgent = 'CallListingAgent', /** * {@link https://ddwiki.reso.org/display/DDW17/Compressor} * * The property includes a compressor. */ Compressor = 'Compressor', /** * {@link https://ddwiki.reso.org/display/DDW17/DC+Well+Pump} * * The property includes a DC well pump. */ DcWellPump = 'DcWellPump', /** * {@link https://ddwiki.reso.org/display/DDW17/Dehumidifier} * * The property includes a dehumidifier. */ Dehumidifier = 'Dehumidifier', /** * {@link https://ddwiki.reso.org/display/DDW17/Farm+Equipment} * * The property includes farm equipment. */ FarmEquipment = 'FarmEquipment', /** * The property includes a fuel tank(s). */ FuelTanks = 'FuelTanks', /** * The property includes a generator. */ Generator = 'Generator', /** * {@link https://ddwiki.reso.org/display/DDW17/Home+Theater} * * The property includes a home theater. */ HomeTheater = 'HomeTheater', /** * {@link https://ddwiki.reso.org/display/DDW17/Intercom} * * The property includes an intercom. */ Intercom = 'Intercom', /** * {@link https://ddwiki.reso.org/display/DDW17/Irrigation+Equipment} * * The property includes irrigation equipment. */ IrrigationEquipment = 'IrrigationEquipment', /** * {@link https://ddwiki.reso.org/display/DDW17/List+Available} * * A list of other equipment included with the property is available upon request. */ ListAvailable = 'ListAvailable', /** * {@link https://ddwiki.reso.org/display/DDW17/Livestock+Equipment} * * The property includes livestock equipment. */ LivestockEquipment = 'LivestockEquipment', /** * The other equipment included with the property is negotiable. */ Negotiable = 'Negotiable', /** * There is no other equipment included with the property. */ None = 'None', /** * {@link https://ddwiki.reso.org/display/DDW17/Orchard+Equipment} * * The property includes orchard equipment. */ OrchardEquipment = 'OrchardEquipment', /** * The property includes equipment other than what's included in this list. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Rotary+Antenna} * * The property includes a rotary antenna. */ RotaryAntenna = 'RotaryAntenna', /** * {@link https://ddwiki.reso.org/display/DDW17/Satellite+Dish} * * The property includes a satellite dish. */ SatelliteDish = 'SatelliteDish', /** * {@link https://ddwiki.reso.org/display/DDW17/TV+Antenna} * * The property includes a TV antenna. */ TvAntenna = 'TvAntenna', /** * The equipment included with the property varies from unit to unit. */ VariesByUnit = 'VariesByUnit', }