UNPKG

@realestate/types

Version:

Types for real estate

236 lines (197 loc) 4.45 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 View { /** * {@link https://ddwiki.reso.org/display/DDW17/Bay} * * The property has a bay view. */ Bay = 'Bay', /** * {@link https://ddwiki.reso.org/display/DDW17/Beach} * * The property has a beach view. */ Beach = 'Beach', /** * The property has a bridge(s) view. */ Bridges = 'Bridges', /** * {@link https://ddwiki.reso.org/display/DDW17/Canal} * * The property has a canal view. */ Canal = 'Canal', /** * {@link https://ddwiki.reso.org/display/DDW17/Canyon} * * The property has a canyon view. */ Canyon = 'Canyon', /** * The property has a city view. */ City = 'City', /** * {@link https://ddwiki.reso.org/display/DDW17/City+Lights} * * The property has a view of the city lights. */ CityLights = 'CityLights', /** * The property has a creek/stream view. */ CreekStream = 'CreekStream', /** * {@link https://ddwiki.reso.org/display/DDW17/Desert} * * The property has a desert view. */ Desert = 'Desert', /** * {@link https://ddwiki.reso.org/display/DDW17/Downtown} * * The property has a downtown view. */ Downtown = 'Downtown', /** * {@link https://ddwiki.reso.org/display/DDW17/Forest} * * The property has a forest view. */ Forest = 'Forest', /** * The property has a garden view. */ Garden = 'Garden', /** * The property has a view of the golf course. */ GolfCourse = 'GolfCourse', /** * {@link https://ddwiki.reso.org/display/DDW17/Hills} * * The property has a view of the hills. */ Hills = 'Hills', /** * The property has a lake view. */ Lake = 'Lake', /** * The property has a marina view. */ Marina = 'Marina', /** * The property has a view of the meadow. */ Meadow = 'Meadow', /** * The property has a mountain view. */ Mountains = 'Mountains', /** * {@link https://ddwiki.reso.org/display/DDW17/Neighborhood} * * The property has a view of the neighborhood. */ Neighborhood = 'Neighborhood', /** * The property has no view. */ None = 'None', /** * {@link https://ddwiki.reso.org/display/DDW17/Ocean} * * The property has an ocean view. */ Ocean = 'Ocean', /** * The property has a view of the orchard(s). */ Orchard = 'Orchard', /** * The property has a view other than those in this list. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Panoramic} * * The property has a panoramic view. */ Panoramic = 'Panoramic', /** * The property has a park/greenbelt view. */ ParkGreenbelt = 'ParkGreenbelt', /** * The property has a view of the pasture. */ Pasture = 'Pasture', /** * The property has a view of a pond. */ Pond = 'Pond', /** * The property has a view of the pool. */ Pool = 'Pool', /** * {@link https://ddwiki.reso.org/display/DDW17/Ridge} * * The property has a view of the ridge. */ Ridge = 'Ridge', /** * The property has a river view. */ River = 'River', /** * {@link https://ddwiki.reso.org/display/DDW17/Rural} * * The property has a rural view. */ Rural = 'Rural', /** * See the remarks fields for more information about the view from the property. */ SeeRemarks = 'SeeRemarks', /** * {@link https://ddwiki.reso.org/display/DDW17/Skyline} * * The property has a view of the skyline. */ Skyline = 'Skyline', /** * {@link https://ddwiki.reso.org/display/DDW17/Territorial} * * The property has a view of the surrounding area. */ Territorial = 'Territorial', /** * The property has a view of the trees or woods. */ TreesWoods = 'TreesWoods', /** * {@link https://ddwiki.reso.org/display/DDW17/Valley} * * The property has a view of the valley. */ Valley = 'Valley', /** * The property has a view of the vineyard(s). */ Vineyard = 'Vineyard', /** * The property has a water view. */ Water = 'Water', }