@realestate/types
Version:
Types for real estate
259 lines (217 loc) • 5.55 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 CurrentUse {
/**
* The land is currently used for agriculture.
*/
Agricultural = 'Agricultural',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Automotive}
*
* The land is currently used for automotive maintenance or repair.
*/
Automotive = 'Automotive',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Cattle}
*
* The land is currently used for cattle.
*/
Cattle = 'Cattle',
/**
* The land is currently used for commercial purposes.
*/
Commercial = 'Commercial',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Dairy}
*
* The land is currently used as a dairy farm.
*/
Dairy = 'Dairy',
/**
* The land is currently used as a farm.
*/
Farm = 'Farm',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Fishery}
*
* The land is currently used as a fishery.
*/
Fishery = 'Fishery',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Grazing}
*
* The land is currently used for live stock grazing.
*/
Grazing = 'Grazing',
/**
* The land is currently used for a highway/tourist service.
*/
HighwayTouristService = 'HighwayTouristService',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Horses}
*
* The land is currently used for horses.
*/
Horses = 'Horses',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Hunting}
*
* The land is currently used for hunting.
*/
Hunting = 'Hunting',
/**
* The land is currently used for industrial purposes.
*/
Industrial = 'Industrial',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Investment}
*
* The land is currently used as an investment.
*/
Investment = 'Investment',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Livestock}
*
* The land is currently used for livestock.
*/
Livestock = 'Livestock',
/**
* The land is currently used for manufactured home.
*/
ManufacturedHome = 'ManufacturedHome',
/**
* The land is currently used for medical/dental business.
*/
MedicalDental = 'MedicalDental',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Mini-Storage}
*
* The land is currently used for mini-storage business.
*/
MiniStorage = 'MiniStorage',
/**
* The land is currently used for mixed uses.
*/
MixedUse = 'MixedUse',
/**
* The land is currently used for multi-family dwelling.
*/
MultiFamily = 'MultiFamily',
/**
* The land is currently used as a nursery.
*/
Nursery = 'Nursery',
/**
* The land is currently used as office space.
*/
Office = 'Office',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Orchard}
*
* The land is currently used for an orchard.
*/
Orchard = 'Orchard',
/**
* The land is currently used for some use other than those in this list.
*/
Other = 'Other',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Pasture}
*
* The land is currently used as a pasture.
*/
Pasture = 'Pasture',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Place+of+Worship}
*
* The land is currently used for a place or worship.
*/
PlaceOfWorship = 'PlaceOfWorship',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Plantable}
*
* The land is currently used as a plantabe field.
*/
Plantable = 'Plantable',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Poultry}
*
* The land is currently used as a poultry farm.
*/
Poultry = 'Poultry',
/**
* The land is currently used as a ranch.
*/
Ranch = 'Ranch',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Recreational}
*
* The land is currently used for recreational purposes.
*/
Recreational = 'Recreational',
/**
* The land is currently used for residential purposes.
*/
Residential = 'Residential',
/**
* The land is currently used for retail purposes.
*/
Retail = 'Retail',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Row+Crops}
*
* The land is currently used for row crops.
*/
RowCrops = 'RowCrops',
/**
* See the Public or Private remarks for details on the current use.
*/
SeeRemarks = 'SeeRemarks',
/**
* The land is currently used for single family residence.
*/
SingleFamily = 'SingleFamily',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Subdivision}
*
* The land is currently used for property subdivisions.
*/
Subdivision = 'Subdivision',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Timber}
*
* The land is currently used for timber.
*/
Timber = 'Timber',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Tree+Farm}
*
* The land is currently used as a tree farm.
*/
TreeFarm = 'TreeFarm',
/**
* The land is currently unimproved.
*/
Unimproved = 'Unimproved',
/**
* The land is currently vacant.
*/
Vacant = 'Vacant',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Vineyard}
*
* The land is currently used as a vineyard.
*/
Vineyard = 'Vineyard',
/**
* The land is currently used for warehousing.
*/
Warehouse = 'Warehouse',
}