@realestate/types
Version:
Types for real estate
75 lines (65 loc) • 1.87 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 AreaSource {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Appraiser}
*
* An appraiser provided the measurement of the area.
*/
Appraiser = 'Appraiser',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Assessor}
*
* The assessor provided the measurement of the area.
*/
Assessor = 'Assessor',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Builder}
*
* The builder provided the measurement of the area.
*/
Builder = 'Builder',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Estimated}
*
* The measurement of the area is an estimate.
*/
Estimated = 'Estimated',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Other}
*
* The measurement of the area was provided by another party not listed.
*/
Other = 'Other',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Owner}
*
* The owner provided the measurement of the area.
*/
Owner = 'Owner',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Plans}
*
* The measurement of the area was taken from building plans.
*/
Plans = 'Plans',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Public+Records}
*
* The measurement of the area was received from public records.
*/
PublicRecords = 'PublicRecords',
/**
* {@link https://ddwiki.reso.org/display/DDW17/See+Remarks}
*
* See remarks for information about the source of the area measurement.
*/
SeeRemarks = 'SeeRemarks',
}