@realestate/types
Version:
Types for real estate
46 lines (39 loc) • 1.18 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 IncomeIncludes {
/**
* The income amount includes income from laundry facilities.
*/
Laundry = 'Laundry',
/**
* The income amount includes income from parking.
*/
Parking = 'Parking',
/**
* The income amount includes income from charging for recreation facilities.
*/
Recreation = 'Recreation',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Rent+Only}
*
* The income amount includes income from only the rent charged to the tenants.
*/
RentOnly = 'RentOnly',
/**
* {@link https://ddwiki.reso.org/display/DDW17/RV+Storage}
*
* The income amount includes income from charging for RV storage.
*/
RvStorage = 'RvStorage',
/**
* The income amount includes income from charging for general storage.
*/
Storage = 'Storage',
}