@realestate/types
Version:
Types for real estate
39 lines (34 loc) • 1.06 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 Furnished {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Furnished}
*
* The dwelling being leased is furnished.
*/
Furnished = 'Furnished',
/**
* The property may be furnished or left unfurnished at the lessor's request. Contact the listing
* agent/office to discuss options and cost differences.
*/
Negotiable = 'Negotiable',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Partially}
*
* The dwelling being leased is partially furnished.
*/
Partially = 'Partially',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Unfurnished}
*
* The dwelling being leased is not furnished.
*/
Unfurnished = 'Unfurnished',
}