UNPKG

@realestate/types

Version:

Types for real estate

211 lines (177 loc) 5.09 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 OperatingExpenseIncludes { /** * The operating expense amount includes accounting costs. */ Accounting = 'Accounting', /** * The operating expense amount includes advertising costs. */ Advertising = 'Advertising', /** * The operating expense amount includes association costs. */ Association = 'Association', /** * The operating expense amount includes cable TV costs. */ CableTv = 'CableTv', /** * {@link https://ddwiki.reso.org/display/DDW17/Capital+Improvements} * * The operating expense amount includes capital improvements costs. */ CapitalImprovements = 'CapitalImprovements', /** * {@link https://ddwiki.reso.org/display/DDW17/Depreciation} * * The operating expense amount includes depreciation costs. */ Depreciation = 'Depreciation', /** * {@link https://ddwiki.reso.org/display/DDW17/Equipment+Rental} * * The operating expense amount includes equipment rental costs. */ EquipmentRental = 'EquipmentRental', /** * {@link https://ddwiki.reso.org/display/DDW17/Fuel} * * The operating expense amount includes fuel costs. */ Fuel = 'Fuel', /** * {@link https://ddwiki.reso.org/display/DDW17/Furniture+Replacement} * * The operating expense amount includes furniture replacement costs. */ FurnitureReplacement = 'FurnitureReplacement', /** * {@link https://ddwiki.reso.org/display/DDW17/Gardener} * * The operating expense amount includes gardener costs. */ Gardener = 'Gardener', /** * The operating expense amount includes insurance costs. */ Insurance = 'Insurance', /** * {@link https://ddwiki.reso.org/display/DDW17/Legal} * * The operating expense amount includes legal costs. */ Legal = 'Legal', /** * {@link https://ddwiki.reso.org/display/DDW17/Licenses} * * The operating expense amount includes licenses costs. */ Licenses = 'Licenses', /** * {@link https://ddwiki.reso.org/display/DDW17/Maintenance} * * The operating expense amount includes maintenance costs. */ Maintenance = 'Maintenance', /** * The operating expense amount includes maintenance grounds costs. */ MaintenanceGrounds = 'MaintenanceGrounds', /** * {@link https://ddwiki.reso.org/display/DDW17/Maintenance+Structure} * * The operating expense amount includes maintenance structure costs. */ MaintenanceStructure = 'MaintenanceStructure', /** * {@link https://ddwiki.reso.org/display/DDW17/Manager} * * The operating expense amount includes manager costs. */ Manager = 'Manager', /** * The operating expense amount includes mortgage/loans costs. */ MortgageLoans = 'MortgageLoans', /** * {@link https://ddwiki.reso.org/display/DDW17/New+Tax} * * The operating expense amount includes new tax costs. */ NewTax = 'NewTax', /** * The operating expense amount includes other costs. */ Other = 'Other', /** * The operating expense amount includes parking costs. */ Parking = 'Parking', /** * The operating expense amount includes pest control costs. */ PestControl = 'PestControl', /** * The operating expense amount includes pool/spa costs. */ PoolSpa = 'PoolSpa', /** * {@link https://ddwiki.reso.org/display/DDW17/Professional+Management} * * The operating expense amount includes professional management costs. */ ProfessionalManagement = 'ProfessionalManagement', /** * The operating expense amount includes security costs. */ Security = 'Security', /** * The operating expense amount includes snow removal costs. */ SnowRemoval = 'SnowRemoval', /** * {@link https://ddwiki.reso.org/display/DDW17/Staff} * * The operating expense amount includes staff costs. */ Staff = 'Staff', /** * {@link https://ddwiki.reso.org/display/DDW17/Supplies} * * The operating expense amount includes supplies costs. */ Supplies = 'Supplies', /** * The operating expense amount includes trash costs. */ Trash = 'Trash', /** * The operating expense amount includes utilities costs. */ Utilities = 'Utilities', /** * {@link https://ddwiki.reso.org/display/DDW17/Vacancy+Allowance} * * The operating expense amount includes vacancy allowance costs. */ VacancyAllowance = 'VacancyAllowance', /** * The operating expense amount includes water/sewer costs. */ WaterSewer = 'WaterSewer', /** * {@link https://ddwiki.reso.org/display/DDW17/Workmans+Compensation} * * The operating expense amount includes workman's compensation costs. */ WorkmansCompensation = 'WorkmansCompensation', }