@realestate/types
Version:
Types for real estate
197 lines (167 loc) • 3.91 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 Fencing {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Back+Yard}
*
* The back yard is fenced.
*/
BackYard = 'BackYard',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Barbed+Wire}
*
* The fencing has barbed wire.
*/
BarbedWire = 'BarbedWire',
/**
* The property has a block wall(s).
*/
Block = 'Block',
/**
* The property has a brick wall(s).
*/
Brick = 'Brick',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Chain+Link}
*
* The property has chain link fencing.
*/
ChainLink = 'ChainLink',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Cross+Fenced}
*
* The property is cross fenced.
*/
CrossFenced = 'CrossFenced',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Electric}
*
* The property has electric fencing.
*/
Electric = 'Electric',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Fenced}
*
* The property is fenced.
*/
Fenced = 'Fenced',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Front+Yard}
*
* The front yard is fenced.
*/
FrontYard = 'FrontYard',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Full}
*
* The full property is fenced.
*/
Full = 'Full',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Gate}
*
* The fencing has a gate(s).
*/
Gate = 'Gate',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Invisible}
*
* The property has invisible fencing.
*/
Invisible = 'Invisible',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Masonry}
*
* The property has masonry wall(s).
*/
Masonry = 'Masonry',
/**
* The property has no fencing.
*/
None = 'None',
/**
* The property has a type of fencing that is not included in this list.
*/
Other = 'Other',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Partial}
*
* The property is partially fenced.
*/
Partial = 'Partial',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Partial+Cross}
*
* The property has partial cross fencing.
*/
PartialCross = 'PartialCross',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Perimeter}
*
* The property has a perimeter fence.
*/
Perimeter = 'Perimeter',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Pipe}
*
* The property has pipe fencing.
*/
Pipe = 'Pipe',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Privacy}
*
* The property has privacy fencing.
*/
Privacy = 'Privacy',
/**
* The property has security fencing.
*/
Security = 'Security',
/**
* See the Public or Private remarks for details on the fencing.
*/
SeeRemarks = 'SeeRemarks',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Slump+Stone}
*
* The property has slump stone wall(s).
*/
SlumpStone = 'SlumpStone',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Split+Rail}
*
* The property has split rail fencing.
*/
SplitRail = 'SplitRail',
/**
* The property has stone wall(s).
*/
Stone = 'Stone',
/**
* The property has vinyl fencing.
*/
Vinyl = 'Vinyl',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Wire}
*
* The property has wire fencing.
*/
Wire = 'Wire',
/**
* The property has wooden fencing.
*/
Wood = 'Wood',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Wrought+Iron}
*
* The property has wrought iron fencing.
*/
WroughtIron = 'WroughtIron',
}