UNPKG

@realestate/types

Version:

Types for real estate

171 lines (147 loc) 5 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 Utilities { /** * {@link https://ddwiki.reso.org/display/DDW17/Cable+Available} * * The property has cable available but is not connected. */ CableAvailable = 'CableAvailable', /** * {@link https://ddwiki.reso.org/display/DDW17/Cable+Connected} * * Cable service is physically connected, but not necessarily paid. */ CableConnected = 'CableConnected', /** * {@link https://ddwiki.reso.org/display/DDW17/Cable+Not+Available} * * Cable is not available in the area of the property. */ CableNotAvailable = 'CableNotAvailable', /** * {@link https://ddwiki.reso.org/display/DDW17/Electricity+Available} * * Electricity is available from the public utility but not connected. */ ElectricityAvailable = 'ElectricityAvailable', /** * {@link https://ddwiki.reso.org/display/DDW17/Electricity+Connected} * * Electricity from the public utility is available and connected, but not necessarily paid. */ ElectricityConnected = 'ElectricityConnected', /** * {@link https://ddwiki.reso.org/display/DDW17/Electricity+Not+Available} * * Electricity from the public utility is not available. An independent source of electricity is the only * option. */ ElectricityNotAvailable = 'ElectricityNotAvailable', /** * {@link https://ddwiki.reso.org/display/DDW17/Natural+Gas+Available} * * Natural gas is available from the public utility but not connected. */ NaturalGasAvailable = 'NaturalGasAvailable', /** * {@link https://ddwiki.reso.org/display/DDW17/Natural+Gas+Connected} * * Natural gas from the public utility is available and connected, but not necessarily paid. */ NaturalGasConnected = 'NaturalGasConnected', /** * {@link https://ddwiki.reso.org/display/DDW17/Natural+Gas+Not+Available} * * Natural gas from the public utility is not available. An independent source of gas is the only option. * i.e. propane. */ NaturalGasNotAvailable = 'NaturalGasNotAvailable', /** * There are no public utilities currently available or connected. */ None = 'None', /** * There are utilities other than those listed. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Phone+Available} * * The property has telephone service available but is not connected. */ PhoneAvailable = 'PhoneAvailable', /** * {@link https://ddwiki.reso.org/display/DDW17/Phone+Connected} * * Telephone service is physically connected, but not necessarily paid. */ PhoneConnected = 'PhoneConnected', /** * {@link https://ddwiki.reso.org/display/DDW17/Phone+Not+Available} * * Telephone service is not available in the area of the property. */ PhoneNotAvailable = 'PhoneNotAvailable', /** * {@link https://ddwiki.reso.org/display/DDW17/Propane} * * The property has a propane system. */ Propane = 'Propane', /** * See remarks for details about the public or other utilities available/installed at the property. */ SeeRemarks = 'SeeRemarks', /** * {@link https://ddwiki.reso.org/display/DDW17/Sewer+Available} * * Sewer service is available from the public utility but not connected. */ SewerAvailable = 'SewerAvailable', /** * {@link https://ddwiki.reso.org/display/DDW17/Sewer+Connected} * * Sewer service from the public utility is available and connected, but not necessarily paid. */ SewerConnected = 'SewerConnected', /** * {@link https://ddwiki.reso.org/display/DDW17/Sewer+Not+Available} * * Sewer service from the public utility is not available. An independent alternative to sewer is the only * option. i.e. septic. */ SewerNotAvailable = 'SewerNotAvailable', /** * {@link https://ddwiki.reso.org/display/DDW17/Underground+Utilities} * * All or some of the utilities are run underground. */ UndergroundUtilities = 'UndergroundUtilities', /** * {@link https://ddwiki.reso.org/display/DDW17/Water+Available} * * Water service is available from the public utility but not connected. */ WaterAvailable = 'WaterAvailable', /** * {@link https://ddwiki.reso.org/display/DDW17/Water+Connected} * * Water service from the public utility is available and connected, but not necessarily paid. */ WaterConnected = 'WaterConnected', /** * {@link https://ddwiki.reso.org/display/DDW17/Water+Not+Available} * * Water service from the public utility is not available. An independent source for water is the only * option. i.e. well. */ WaterNotAvailable = 'WaterNotAvailable', }