@realestate/types
Version:
Types for real estate
116 lines (100 loc) • 3.19 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 AssociationFeeIncludes {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Cable+TV}
*
* Cable TV is included in the fee paid to the Association.
*/
CableTv = 'CableTv',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Earthquake+Insurance}
*
* Earthquake Insurance is included in the fee paid to the Association.
*/
EarthquakeInsurance = 'EarthquakeInsurance',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Electricity}
*
* Electricity is included in the fee paid to the Association.
*/
Electricity = 'Electricity',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Gas}
*
* Gas is included in the fee paid to the Association.
*/
Gas = 'Gas',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Insurance}
*
* Insurance is included in the fee paid to the Association.
*/
Insurance = 'Insurance',
/**
* Internet access is included with the Home Owner’s Association dues paid by the owner. Questions about
* the means of access (e.g. wifi, ethernet), the speed of the access and other information about the
* Internet Service Provider (ISP) may be directed to the Home Owner’s Association.
*/
Internet = 'Internet',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Maintenance+Grounds}
*
* Maintenance of the grounds including lawns and common areas but not including exterior structures.
*/
MaintenanceGrounds = 'MaintenanceGrounds',
/**
* Maintenance of the exterior of the structure including roofing, walls, exterior structures and does not
* include the grounds.
*/
MaintenanceStructure = 'MaintenanceStructure',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Pest+Control}
*
* Pest Control is included in the fee paid to the Association.
*/
PestControl = 'PestControl',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Security}
*
* Security is included in the fee paid to the Association.
*/
Security = 'Security',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Sewer}
*
* Sewer is included in the fee paid to the Association.
*/
Sewer = 'Sewer',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Snow+Removal}
*
* Snow Removal is included in the fee paid to the Association.
*/
SnowRemoval = 'SnowRemoval',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Trash}
*
* Trash is included in the fee paid to the Association.
*/
Trash = 'Trash',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Utilities}
*
* Utilities is included in the fee paid to the Association.
*/
Utilities = 'Utilities',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Water}
*
* Water is included in the fee paid to the Association.
*/
Water = 'Water',
}