UNPKG

@realestate/types

Version:

Types for real estate

157 lines (127 loc) 2.81 kB
/** * 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 TenantPays { /** * The tenant pays for all utilities. */ AllUtilities = 'AllUtilities', /** * The tenant pays for association fees. */ AssociationFees = 'AssociationFees', /** * The tenant pays for cable TV. */ CableTv = 'CableTv', /** * The tenant pays for common area maintenance. */ CommonAreaMaintenance = 'CommonAreaMaintenance', /** * The tenant pays for electricity. */ Electricity = 'Electricity', /** * The tenant pays for exterior maintenance. */ ExteriorMaintenance = 'ExteriorMaintenance', /** * The tenant pays for gas. */ Gas = 'Gas', /** * The tenant pays for grounds care. */ GroundsCare = 'GroundsCare', /** * The tenant pays for hot water. */ HotWater = 'HotWater', /** * The tenant pays for HVAC maintenance. */ HvacMaintenance = 'HvacMaintenance', /** * The tenant pays for insurance. */ Insurance = 'Insurance', /** * The tenant pays for janitorial service. */ JanitorialService = 'JanitorialService', /** * The tenant pays for management. */ Management = 'Management', /** * The tenant pays for no other utilities, services, etc. */ None = 'None', /** * The tenant pays for items other than those in this list. */ Other = 'Other', /** * The tenant pays for other taxes. */ OtherTax = 'OtherTax', /** * The tenant pays for parking fees. */ ParkingFee = 'ParkingFee', /** * The tenant pays for pest control. */ PestControl = 'PestControl', /** * The tenant pays for pool maintenance. */ PoolMaintenance = 'PoolMaintenance', /** * The tenant pays for repairs. */ Repairs = 'Repairs', /** * The tenant pays for roof maintenance. */ Roof = 'Roof', /** * The tenant pays for security. */ Security = 'Security', /** * See the listing's remarks for details on what they tenant pays for. */ SeeRemarks = 'SeeRemarks', /** * The tenant pays for sewer. */ Sewer = 'Sewer', /** * The tenant pays for snow removal. */ SnowRemoval = 'SnowRemoval', /** * The tenant pays for taxes. */ Taxes = 'Taxes', /** * The tenant pays for telephone. */ Telephone = 'Telephone', /** * The tenant pays for trash collection. */ TrashCollection = 'TrashCollection', /** * The tenant pays for water. */ Water = 'Water', }