@realestate/types
Version:
Types for real estate
108 lines (91 loc) • 2.27 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 PatioAndPorchFeatures {
/**
* The property has awning(s).
*/
Awnings = 'Awnings',
/**
* The property has a covered patio or porch.
*/
Covered = 'Covered',
/**
* The property has a deck.
*/
Deck = 'Deck',
/**
* The property has an enclosed patio or porch.
*/
Enclosed = 'Enclosed',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Front+Porch}
*
* The property has a front porch.
*/
FrontPorch = 'FrontPorch',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Glass+Enclosed}
*
* The property has a glass enclosed patio or porch.
*/
GlassEnclosed = 'GlassEnclosed',
/**
* The property has no patio or porch.
*/
None = 'None',
/**
* The property has a patio or porch feature other than what's included in this list.
*/
Other = 'Other',
/**
* The property has a patio.
*/
Patio = 'Patio',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Porch}
*
* The property has a porch.
*/
Porch = 'Porch',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Rear+Porch}
*
* The property has a rear porch.
*/
RearPorch = 'RearPorch',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Screened}
*
* The property has screened patio or porch.
*/
Screened = 'Screened',
/**
* See the remarks fields for more information on the patio or porch features of the property.
*/
SeeRemarks = 'SeeRemarks',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Side+Porch}
*
* The property has a side porch.
*/
SidePorch = 'SidePorch',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Terrace}
*
* The property has a terrace.
*/
Terrace = 'Terrace',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Wrap+Around}
*
* The property has wrap around patio or porch.
*/
WrapAround = 'WrapAround',
}