@realestate/types
Version:
Types for real estate
82 lines (69 loc) • 2.02 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 FoundationDetails {
/**
* The foundation of the property is made wholly or partially of block.
*/
Block = 'Block',
/**
* The foundation of the property is made wholly or partially of brick/mortar.
*/
BrickMortar = 'BrickMortar',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Combination}
*
* The foundation of the property is made of a combination of materials.
*/
Combination = 'Combination',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Concrete+Perimeter}
*
* The foundation of the property has a concrete perimeter.
*/
ConcretePerimeter = 'ConcretePerimeter',
/**
* There are no details about the foundation of the property.
*/
None = 'None',
/**
* A foundation type not included in this list.
*/
Other = 'Other',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Permanent}
*
* The foundation is permanent and not temporary or movable.
*/
Permanent = 'Permanent',
/**
* The foundation of the property is made wholly or partially of pillar/post/pier.
*/
PillarPostPier = 'PillarPostPier',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Raised}
*
* The foundation of the property is raised.
*/
Raised = 'Raised',
/**
* See the listing's remarks for details about the foundation.
*/
SeeRemarks = 'SeeRemarks',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Slab}
*
* The foundation of the property is made wholly or partially of a concrete slab.
*/
Slab = 'Slab',
/**
* The foundation of the property is made wholly or partially of stone.
*/
Stone = 'Stone',
}