UNPKG

@realestate/types

Version:

Types for real estate

57 lines (47 loc) 1.32 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 LotSizeSource { /** * An appraiser provided the measurement of the lot size. */ Appraiser = 'Appraiser', /** * The assessor provided the measurement of the lot size. */ Assessor = 'Assessor', /** * The builder provided the measurement of the lot size. */ Builder = 'Builder', /** * The measurement of the lot size is an estimate. */ Estimated = 'Estimated', /** * The measurement of the lot size was provided by another party not listed. */ Other = 'Other', /** * The owner provided the measurement of the lot size. */ Owner = 'Owner', /** * The measurement of the lot size was taken from building plans. */ Plans = 'Plans', /** * The measurement of the lot size was received from public records. */ PublicRecords = 'PublicRecords', /** * See remarks for information about the source of the lot size measurement. */ SeeRemarks = 'SeeRemarks', }