UNPKG

@realestate/types

Version:

Types for real estate

210 lines (176 loc) 4.44 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 ExteriorFeatures { /** * The property has one or more awnings on it's exterior. */ Awnings = 'Awnings', /** * The property has an exterior balcony. */ Balcony = 'Balcony', /** * The property has an outdoors barbeque. */ Barbecue = 'Barbecue', /** * The property has a basketball court. */ BasketballCourt = 'BasketballCourt', /** * The property includes a boat slip. */ BoatSlip = 'BoatSlip', /** * {@link https://ddwiki.reso.org/display/DDW17/Built-in+Barbecue} * * The property has a built-in outdoor barbeque. */ BuiltInBarbecue = 'BuiltInBarbecue', /** * The property has a courtyard. */ Courtyard = 'Courtyard', /** * {@link https://ddwiki.reso.org/display/DDW17/Covered+Courtyard} * * The property has a covered courtyard. */ CoveredCourtyard = 'CoveredCourtyard', /** * The property includes a dock. */ Dock = 'Dock', /** * {@link https://ddwiki.reso.org/display/DDW17/Dog+Run} * * The property has a dog run. */ DogRun = 'DogRun', /** * {@link https://ddwiki.reso.org/display/DDW17/Electric+Grill} * * The property has an outdoor electric grill. */ ElectricGrill = 'ElectricGrill', /** * {@link https://ddwiki.reso.org/display/DDW17/Fire+Pit} * * The property has an outdoor fire pit. */ FirePit = 'FirePit', /** * The property has a garden. */ Garden = 'Garden', /** * {@link https://ddwiki.reso.org/display/DDW17/Gas+Grill} * * The property has an outdoor gas grill. */ GasGrill = 'GasGrill', /** * The property has a grey water system. */ GrayWaterSystem = 'GrayWaterSystem', /** * {@link https://ddwiki.reso.org/display/DDW17/Kennel} * * The property has a kennel. */ Kennel = 'Kennel', /** * The property has exterior lighting. */ Lighting = 'Lighting', /** * {@link https://ddwiki.reso.org/display/DDW17/Misting+System} * * The property has a misting system. */ MistingSystem = 'MistingSystem', /** * The property has no exterior features. */ None = 'None', /** * The property has exterior features other than those in this list. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Outdoor+Grill} * * The property has an outdoor grill. */ OutdoorGrill = 'OutdoorGrill', /** * The property has an outdoor kitchen. */ OutdoorKitchen = 'OutdoorKitchen', /** * {@link https://ddwiki.reso.org/display/DDW17/Outdoor+Shower} * * The property has an outdoor shower. */ OutdoorShower = 'OutdoorShower', /** * {@link https://ddwiki.reso.org/display/DDW17/Permeable+Paving} * * The property has preamble paving that allows fluids to run through the paving to the below ground or * channeling. */ PermeablePaving = 'PermeablePaving', /** * The property has a playground. */ Playground = 'Playground', /** * {@link https://ddwiki.reso.org/display/DDW17/Private+Entrance} * * The property has a private entrance. */ PrivateEntrance = 'PrivateEntrance', /** * {@link https://ddwiki.reso.org/display/DDW17/Private+Yard} * * The property has a private yard. */ PrivateYard = 'PrivateYard', /** * The property has a cistern for water collection. */ RainBarrelCisterns = 'RainBarrelCisterns', /** * {@link https://ddwiki.reso.org/display/DDW17/Rain+Gutters} * * The structure has ran gutters. */ RainGutters = 'RainGutters', /** * {@link https://ddwiki.reso.org/display/DDW17/RV+Hookup} * * The property has hookups for recreational vehicles. */ RvHookup = 'RvHookup', /** * The property has external storage. */ Storage = 'Storage', /** * The property has one or more tennis courts. */ TennisCourts = 'TennisCourts', /** * {@link https://ddwiki.reso.org/display/DDW17/Uncovered+Courtyard} * * The property has an uncovered courtyard. */ UncoveredCourtyard = 'UncoveredCourtyard', }