@realestate/types
Version:
Types for real estate
213 lines (179 loc) • 4.41 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 OtherStructures {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Airplane+Hangar}
*
* The property includes an airplane hangar.
*/
AirplaneHangar = 'AirplaneHangar',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Arena}
*
* The property includes an arena.
*/
Arena = 'Arena',
/**
* The property includes a barn(s).
*/
Barns = 'Barns',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Boat+House}
*
* The property includes a boat house.
*/
BoatHouse = 'BoatHouse',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Cabana}
*
* The property includes a cabana.
*/
Cabana = 'Cabana',
/**
* The property includes a cave(s).
*/
Caves = 'Caves',
/**
* The property includes a corral(s).
*/
Corrals = 'Corrals',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Covered+Arena}
*
* The property includes a covered arena.
*/
CoveredArena = 'CoveredArena',
/**
* The property includes a garage(s).
*/
Garages = 'Garages',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Gazebo}
*
* The property includes a gazebo.
*/
Gazebo = 'Gazebo',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Grain+Storage}
*
* The property includes grain storage.
*/
GrainStorage = 'GrainStorage',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Greenhouse}
*
* The property includes a greenhouse.
*/
Greenhouse = 'Greenhouse',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Guest+House}
*
* The property includes a guest house.
*/
GuestHouse = 'GuestHouse',
/**
* The property includes a kennel or dog run.
*/
KennelDogRun = 'KennelDogRun',
/**
* The property includes a mobile home.
*/
MobileHome = 'MobileHome',
/**
* The property has no other structures.
*/
None = 'None',
/**
* The property includes a structure other than those included in this list.
*/
Other = 'Other',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Outbuilding}
*
* The property includes an outbuilding.
*/
Outbuilding = 'Outbuilding',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Outdoor+Kitchen}
*
* The property includes an outdoor kitchen.
*/
OutdoorKitchen = 'OutdoorKitchen',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Packing+Shed}
*
* The property includes a packing shed.
*/
PackingShed = 'PackingShed',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Pergola}
*
* The property includes a pergola.
*/
Pergola = 'Pergola',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Pool+House}
*
* The property includes a pool house.
*/
PoolHouse = 'PoolHouse',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Poultry+Coop}
*
* The property includes a poultry coop.
*/
PoultryCoop = 'PoultryCoop',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Residence}
*
* The property includes a residence structure.
*/
Residence = 'Residence',
/**
* The property includes RV or boat storage.
*/
RvBoatStorage = 'RvBoatStorage',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Second+Garage}
*
* The property includes a second garage.
*/
SecondGarage = 'SecondGarage',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Second+Residence}
*
* The property includes a second residence.
*/
SecondResidence = 'SecondResidence',
/**
* See the Public or Private Remarks for information about other structures on the property.
*/
SeeRemarks = 'SeeRemarks',
/**
* The property includes a shed(s).
*/
Sheds = 'Sheds',
/**
* The property includes stable(s).
*/
Stables = 'Stables',
/**
* The property includes storage.
*/
Storage = 'Storage',
/**
* The property includes a tennis court(s).
*/
TennisCourts = 'TennisCourts',
/**
* The property includes a workshop.
*/
Workshop = 'Workshop',
}