@realestate/types
Version:
Types for real estate
96 lines (83 loc) • 2.89 kB
TypeScript
/**
* 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 GreenEnergyEfficient {
/**
* For purposes of marketing, the property has appliances that have some green/efficient rating or quality.
*/
Appliances = 'Appliances',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Construction}
*
* For purposes of marketing, the property has construction that has some green/efficient rating or quality.
*/
Construction = 'Construction',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Doors}
*
* For purposes of marketing, the property has doors that have some green/efficient rating or quality.
*/
Doors = 'Doors',
/**
* For purposes of marketing, the property has exposure/shade that has some green/efficient rating or
* quality.
*/
ExposureShade = 'ExposureShade',
/**
* {@link https://ddwiki.reso.org/display/DDW17/HVAC}
*
* For purposes of marketing, the property has a heating, ventilation and air conditioning system that has
* some green/efficient rating or quality.
*/
Hvac = 'Hvac',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Incentives}
*
* For purposes of marketing, the property has incentives that have some green/efficiency focus.
*/
Incentives = 'Incentives',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Insulation}
*
* For purposes of marketing, the property has insulation that has some green/efficient rating or quality.
*/
Insulation = 'Insulation',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Lighting}
*
* For purposes of marketing, the property has lighting that has some green/efficient rating or quality.
*/
Lighting = 'Lighting',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Roof}
*
* For purposes of marketing, the property has a roof that has some green/efficient rating or quality.
*/
Roof = 'Roof',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Thermostat}
*
* For purposes of marketing, the property has thermostat(s) that have some green/efficient rating or
* quality.
*/
Thermostat = 'Thermostat',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Water+Heater}
*
* For purposes of marketing, the property has a water heater that have some green/efficient rating or
* quality.
*/
WaterHeater = 'WaterHeater',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Windows}
*
* For purposes of marketing, the property has windows that have some green/efficient rating or quality.
*/
Windows = 'Windows',
}