@realestate/types
Version:
Types for real estate
111 lines (95 loc) • 2.54 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 Sewer {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Aerobic+Septic}
*
* The property has an aerobic septic.
*/
AerobicSeptic = 'AerobicSeptic',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Cesspool}
*
* The property has a cesspool.
*/
Cesspool = 'Cesspool',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Engineered+Septic}
*
* The property has an engineered septic.
*/
EngineeredSeptic = 'EngineeredSeptic',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Holding+Tank}
*
* The property has a holding tank.
*/
HoldingTank = 'HoldingTank',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Mound+Septic}
*
* The property has a mound septic.
*/
MoundSeptic = 'MoundSeptic',
/**
* The property has no sewer, septic or cesspool.
*/
None = 'None',
/**
* The property has a system other than sewer, sceptic or cesspool in this list.
*/
Other = 'Other',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Perc+Test+On+File}
*
* The property has a perc test on file.
*/
PercTestOnFile = 'PercTestOnFile',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Perc+Test+Required}
*
* The property requires a perc test.
*/
PercTestRequired = 'PercTestRequired',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Private+Sewer}
*
* The property has a private sewer.
*/
PrivateSewer = 'PrivateSewer',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Public+Sewer}
*
* The property has a public sewer.
*/
PublicSewer = 'PublicSewer',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Septic+Needed}
*
* The property needs a septic system.
*/
SepticNeeded = 'SepticNeeded',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Septic+Tank}
*
* The property has a septic tank.
*/
SepticTank = 'SepticTank',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Shared+Septic}
*
* The property has a shared septic.
*/
SharedSeptic = 'SharedSeptic',
/**
* The property's sewer/septic is unknown.
*/
Unknown = 'Unknown',
}