@realestate/types
Version:
Types for real estate
80 lines (66 loc) • 1.67 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 RentIncludes {
/**
* Rent for the dwelling includes all utilities.
*/
AllUtilities = 'AllUtilities',
/**
* Rent for the dwelling includes cable TV.
*/
CableTv = 'CableTv',
/**
* Rent for the dwelling includes electricity.
*/
Electricity = 'Electricity',
/**
* Rent for the dwelling includes gardener.
*/
Gardener = 'Gardener',
/**
* Rent for the dwelling includes gas.
*/
Gas = 'Gas',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Internet}
*
* Rent for the dwelling includes internet.
*/
Internet = 'Internet',
/**
* Rent for the dwelling includes management.
*/
Management = 'Management',
/**
* Rent for the dwelling does not include other potential costs such as utilities, management, services,
* etc.
*/
None = 'None',
/**
* An item of what rent includes not in this list.
*/
Other = 'Other',
/**
* See the listing's remarks for details about things included in the rent.
*/
SeeRemarks = 'SeeRemarks',
/**
* Rent for the dwelling includes sewer.
*/
Sewer = 'Sewer',
/**
* Rent for the dwelling includes trash collection.
*/
TrashCollection = 'TrashCollection',
/**
* Rent for the dwelling includes water.
*/
Water = 'Water',
}