@realestate/types
Version:
Types for real estate
147 lines (125 loc) • 3.63 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 Basement {
/**
* The basement is setup as an apartment living space.
*/
Apartment = 'Apartment',
/**
* The basement is stubbed for a bathroom.
*/
BathStubbed = 'BathStubbed',
/**
* The basement has block construction.
*/
Block = 'Block',
/**
* The basement has a concrete floor and/or walls.
*/
Concrete = 'Concrete',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Crawl+Space}
*
* The basement is/has a crawl space.
*/
CrawlSpace = 'CrawlSpace',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Daylight}
*
* The basement has natural lighting.
*/
Daylight = 'Daylight',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Dirt+Floor}
*
* The basement has a dirt floor.
*/
DirtFloor = 'DirtFloor',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Exterior+Entry}
*
* The basement has an exterior entry.
*/
ExteriorEntry = 'ExteriorEntry',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Finished}
*
* The basement is finished to a given standard of competition. Examples may include underlayment and
* flooring; walls are framed, insulated, drywalled and painted; etc.
*/
Finished = 'Finished',
/**
* {@link https://ddwiki.reso.org/display/DDW17/French+Drain}
*
* The basement has a French drain.
*/
FrenchDrain = 'FrenchDrain',
/**
* The basement fills the entire space under the house.
*/
Full = 'Full',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Interior+Entry}
*
* The basement has an interior entry.
*/
InteriorEntry = 'InteriorEntry',
/**
* The property has no basement.
*/
None = 'None',
/**
* The basement has features or attributes other than those listed in this field.
*/
Other = 'Other',
/**
* The basement partially fills the space under the house.
*/
Partial = 'Partial',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Partially+Finished}
*
* The basement is partially finished. Some finishing work is done but not all. Examples may include
* underlayment and flooring; walls are framed, insulated, drywalled and painted; etc.
*/
PartiallyFinished = 'PartiallyFinished',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Storage+Space}
*
* The basement has storage space.
*/
StorageSpace = 'StorageSpace',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Sump+Pump}
*
* The basement has a sump pump.
*/
SumpPump = 'SumpPump',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Unfinished}
*
* The basement is unfinished.
*/
Unfinished = 'Unfinished',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Walk-Out+Access}
*
* A walk-out basement is a structure where the basement space directly accessible from the outside with the
* entryway level with the ground.
*/
WalkOutAccess = 'WalkOutAccess',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Walk-Up+Access}
*
* A walk-up basement is a structure where the basement space directly accessible from the outside with the
* entryway below ground and usually exterior stairs leading up to ground level.
*/
WalkUpAccess = 'WalkUpAccess',
}