UNPKG

@realestate/types

Version:

Types for real estate

124 lines (103 loc) 2.34 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 CommunityFeatures { /** * The community has an airport or runway. */ AirportRunway = 'AirportRunway', /** * The community has a clubhouse. */ Clubhouse = 'Clubhouse', /** * {@link https://ddwiki.reso.org/display/DDW17/Curbs} * * The community streets have curbs. */ Curbs = 'Curbs', /** * {@link https://ddwiki.reso.org/display/DDW17/Fishing} * * The community has places to go fishing. */ Fishing = 'Fishing', /** * The community has a fitness center. */ FitnessCenter = 'FitnessCenter', /** * The community is gated. */ Gated = 'Gated', /** * {@link https://ddwiki.reso.org/display/DDW17/Golf} * * The community has golfing. */ Golf = 'Golf', /** * The community has a lake. */ Lake = 'Lake', /** * The community includes no additional features. */ None = 'None', /** * The community has features beyond those listed in this field. */ Other = 'Other', /** * The community has a park. */ Park = 'Park', /** * The community has a playground. */ Playground = 'Playground', /** * The community has a pool. */ Pool = 'Pool', /** * The community has racquetball facilities. */ Racquetball = 'Racquetball', /** * The community has a restaurant. */ Restaurant = 'Restaurant', /** * {@link https://ddwiki.reso.org/display/DDW17/Sidewalks} * * The community streets have sidewalks. */ Sidewalks = 'Sidewalks', /** * The community has horse stables. */ Stables = 'Stables', /** * {@link https://ddwiki.reso.org/display/DDW17/Street+Lights} * * The community streets have lighting. */ StreetLights = 'StreetLights', /** * {@link https://ddwiki.reso.org/display/DDW17/Suburban} * * The community is a suburban setting. */ Suburban = 'Suburban', /** * The community has tennis court(s). */ TennisCourts = 'TennisCourts', }