@realestate/types
Version:
Types for real estate
191 lines (161 loc) • 4.21 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 OwnerPays {
/**
* {@link https://ddwiki.reso.org/display/DDW17/All+Utilities}
*
* The owner/lessor pays for all utilities.
*/
AllUtilities = 'AllUtilities',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Association+Fees}
*
* The owner/lessor pays for association fees.
*/
AssociationFees = 'AssociationFees',
/**
* The owner/lessor pays for cable television.
*/
CableTv = 'CableTv',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Common+Area+Maintenance}
*
* The owner/lessor pays for common area maintenance.
*/
CommonAreaMaintenance = 'CommonAreaMaintenance',
/**
* The owner/lessor pays for electricity.
*/
Electricity = 'Electricity',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Exterior+Maintenance}
*
* The owner/lessor pays for exterior maintenance.
*/
ExteriorMaintenance = 'ExteriorMaintenance',
/**
* The owner/lessor pays for gas.
*/
Gas = 'Gas',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Grounds+Care}
*
* The owner/lessor pays for grounds care.
*/
GroundsCare = 'GroundsCare',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Hot+Water}
*
* The owner/lessor pays for hot water.
*/
HotWater = 'HotWater',
/**
* {@link https://ddwiki.reso.org/display/DDW17/HVAC+Maintenance}
*
* The owner/lessor pays for HVAC maintenance.
*/
HvacMaintenance = 'HvacMaintenance',
/**
* The owner/lessor pays for insurance.
*/
Insurance = 'Insurance',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Janitorial+Service}
*
* The owner/lessor pays for janitorial service .
*/
JanitorialService = 'JanitorialService',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Management}
*
* The owner/lessor pays for management.
*/
Management = 'Management',
/**
* The owner/lessor pays for no utilities, services, etc.
*/
None = 'None',
/**
* The owner/lessor pays for items that are not included in this list.
*/
Other = 'Other',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Other+Tax}
*
* The owner/lessor pays for other taxes.
*/
OtherTax = 'OtherTax',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Parking+Fee}
*
* The owner/lessor pays for parking fees.
*/
ParkingFee = 'ParkingFee',
/**
* The owner/lessor pays for pest control.
*/
PestControl = 'PestControl',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Pool+Maintenance}
*
* The owner/lessor pays for pool maintenance.
*/
PoolMaintenance = 'PoolMaintenance',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Repairs}
*
* The owner/lessor pays for repairs.
*/
Repairs = 'Repairs',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Roof+Maintenance}
*
* The owner/lessor pays for roof maintenance.
*/
RoofMaintenance = 'RoofMaintenance',
/**
* The owner/lessor pays for security.
*/
Security = 'Security',
/**
* See the listing's remarks for details on what the owner/lessor pays for.
*/
SeeRemarks = 'SeeRemarks',
/**
* The owner/lessor pays for sewer.
*/
Sewer = 'Sewer',
/**
* The owner/lessor pays for snow removal.
*/
SnowRemoval = 'SnowRemoval',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Taxes}
*
* The owner/lessor pays for taxes.
*/
Taxes = 'Taxes',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Telephone}
*
* The owner/lessor pays for telephone.
*/
Telephone = 'Telephone',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Trash+Collection}
*
* The owner/lessor pays for trash collection.
*/
TrashCollection = 'TrashCollection',
/**
* The owner/lessor pays for water.
*/
Water = 'Water',
}