@realestate/types
Version:
Types for real estate
65 lines (55 loc) • 1.49 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 WaterSource {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Cistern}
*
* The property's source of water has/includes a cistern.
*/
Cistern = 'Cistern',
/**
* The property has no current source of water.
*/
None = 'None',
/**
* The property has a source of water other than those listed.
*/
Other = 'Other',
/**
* The property's source of water is private.
*/
Private = 'Private',
/**
* The property's source of water is public.
*/
Public = 'Public',
/**
* See the listing's remarks for details on the property's water source.
*/
SeeRemarks = 'SeeRemarks',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Shared+Well}
*
* The property's source of water has/includes a shared well.
*/
SharedWell = 'SharedWell',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Spring}
*
* The property's source of water has/includes a spring.
*/
Spring = 'Spring',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Well}
*
* The property's source of water has/includes a well.
*/
Well = 'Well',
}