@realestate/types
Version:
Types for real estate
58 lines (51 loc) • 1.89 kB
TypeScript
/**
* 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 CommonWalls {
/**
* {@link https://ddwiki.reso.org/display/DDW17/End+Unit}
*
* The dwelling being sold has one or more common walls with another property that is not part of the sale
* and is at the end of a row of units. Also known as an attached structure.
*/
EndUnit = 'EndUnit',
/**
* {@link https://ddwiki.reso.org/display/DDW17/No+Common+Walls}
*
* The dwelling being sold has no attached structures that are not part of the sale. Also know as a
* detached structure.
*/
NoCommonWalls = 'NoCommonWalls',
/**
* {@link https://ddwiki.reso.org/display/DDW17/No+One+Above}
*
* The property is attached to another dwelling that is not part of the sale, but there is no unit above the
* one being sold.
*/
NoOneAbove = 'NoOneAbove',
/**
* {@link https://ddwiki.reso.org/display/DDW17/No+One+Below}
*
* The property is attached to another dwelling that is not part of the sale, but there is no unit below the
* one being sold.
*/
NoOneBelow = 'NoOneBelow',
/**
* {@link https://ddwiki.reso.org/display/DDW17/1+Common+Wall}
*
* The dwelling being sold has one common wall with another property that is not part of the sale. Also
* known as an attached structure.
*/
OneCommonWall = 'OneCommonWall',
/**
* The dwelling being sold has two or more common walls with another property that is not part of the sale.
* Also known as an attached structure.
*/
TwoOrMoreCommonWalls = 'TwoOrMoreCommonWalls',
}