UNPKG

@realestate/types

Version:

Types for real estate

130 lines (111 loc) 2.9 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 WaterfrontFeatures { /** * The property has access to the beach. */ BeachAccess = 'BeachAccess', /** * {@link https://ddwiki.reso.org/display/DDW17/Beach+Front} * * The property is on the beach front. */ BeachFront = 'BeachFront', /** * {@link https://ddwiki.reso.org/display/DDW17/Canal+Access} * * The property has access to the canal(s). */ CanalAccess = 'CanalAccess', /** * {@link https://ddwiki.reso.org/display/DDW17/Canal+Front} * * The property is located on the canal. */ CanalFront = 'CanalFront', /** * {@link https://ddwiki.reso.org/display/DDW17/Creek} * * The property is either on or near a creek. */ Creek = 'Creek', /** * {@link https://ddwiki.reso.org/display/DDW17/Lagoon} * * The property is either on or near a lagoon. */ Lagoon = 'Lagoon', /** * The property is either on or near a lake. */ Lake = 'Lake', /** * {@link https://ddwiki.reso.org/display/DDW17/Lake+Front} * * The property is on the lake front. */ LakeFront = 'LakeFront', /** * {@link https://ddwiki.reso.org/display/DDW17/Lake+Privileges} * * The property includes rights to access the lake. */ LakePrivileges = 'LakePrivileges', /** * {@link https://ddwiki.reso.org/display/DDW17/Navigable+Water} * * The water wide, slow and deep enough for water vessels. */ NavigableWater = 'NavigableWater', /** * {@link https://ddwiki.reso.org/display/DDW17/Ocean+Access} * * The property has access to the ocean. */ OceanAccess = 'OceanAccess', /** * {@link https://ddwiki.reso.org/display/DDW17/Ocean+Front} * * The property is on the ocean front. */ OceanFront = 'OceanFront', /** * The property is on or near a pond. */ Pond = 'Pond', /** * {@link https://ddwiki.reso.org/display/DDW17/River+Access} * * The property has access to the river. */ RiverAccess = 'RiverAccess', /** * {@link https://ddwiki.reso.org/display/DDW17/River+Front} * * The property is located on the river front. */ RiverFront = 'RiverFront', /** * {@link https://ddwiki.reso.org/display/DDW17/Seawall} * * The property is protected by a sea wall or barrier. */ Seawall = 'Seawall', /** * {@link https://ddwiki.reso.org/display/DDW17/Stream} * * The property is on our near a stream. */ Stream = 'Stream', /** * The property is located on the waterfront. */ Waterfront = 'Waterfront', }