@realestate/types
Version:
Types for real estate
34 lines (30 loc) • 1.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 PowerProductionAnnualStatus {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Actual}
*
* Annual production derived from 12 or more months of actual data. The most recent 12 months is preferred
* because systems can degrade, albeit slowly, over time and, more importantly, conditions (e.g., trees) can
* change. Therefore older data might over- or under-estimate current production amounts.
*/
Actual = 'Actual',
/**
* Annual production as estimated at the time or before the system began operation.
*/
Estimated = 'Estimated',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Partially+Estimated}
*
* Annual production derived from less than 12 months of actual data, and therefore extrapolated to estimate
* annual production.
*/
PartiallyEstimated = 'PartiallyEstimated',
}