UNPKG

@realestate/types

Version:

Types for real estate

73 lines (61 loc) 1.65 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 LotDimensionsSource { /** * The lot dimensions were provided by an appraiser. */ Appraiser = 'Appraiser', /** * The lot dimensions were provided by the assessor. */ Assessor = 'Assessor', /** * The lot dimensions were provided by the builder. */ Builder = 'Builder', /** * The lot dimensions were estimated. */ Estimated = 'Estimated', /** * {@link https://ddwiki.reso.org/display/DDW17/GIS+Calculated} * * The lot dimensions were GIS calculated. */ GisCalculated = 'GisCalculated', /** * {@link https://ddwiki.reso.org/display/DDW17/Measured} * * The lot dimensions were measured. */ Measured = 'Measured', /** * The lot dimensions were provided by a source other than those in this list. */ Other = 'Other', /** * The lot dimensions were provided by the owner. */ Owner = 'Owner', /** * The lot dimensions were taken from public records. */ PublicRecords = 'PublicRecords', /** * See the Public or Private Remarks for details on the source of the lot dimensions. */ SeeRemarks = 'SeeRemarks', /** * {@link https://ddwiki.reso.org/display/DDW17/Survey} * * The lot dimensions were provided by a land survey. */ Survey = 'Survey', }