UNPKG

@realestate/types

Version:

Types for real estate

77 lines (65 loc) 1.63 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 RoadSurfaceType { /** * {@link https://ddwiki.reso.org/display/DDW17/Alley+Paved} * * The property's road is a paved alley. */ AlleyPaved = 'AlleyPaved', /** * The property's road is asphalt. */ Asphalt = 'Asphalt', /** * {@link https://ddwiki.reso.org/display/DDW17/Chip+And+Seal} * * The property's road is chip and seal. */ ChipAndSeal = 'ChipAndSeal', /** * The property's road is concrete. */ Concrete = 'Concrete', /** * {@link https://ddwiki.reso.org/display/DDW17/Dirt} * * The property's road is dirt. */ Dirt = 'Dirt', /** * {@link https://ddwiki.reso.org/display/DDW17/Gravel} * * The property's road is gravel. */ Gravel = 'Gravel', /** * The property has no road. */ None = 'None', /** * The surface type of the property's road is something other than those in this list. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Paved} * * The property's road is paved. */ Paved = 'Paved', /** * See the Public or Private Remarks for details on the road surface type. */ SeeRemarks = 'SeeRemarks', /** * The property's road is unimproved. */ Unimproved = 'Unimproved', }