UNPKG

@realestate/types

Version:

Types for real estate

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