@realestate/types
Version:
Types for real estate
62 lines (51 loc) • 1.18 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 SpaFeatures {
/**
* The spa is not built into the ground.
*/
AboveGround = 'AboveGround',
/**
* The bath has a built in spa/jets.
*/
Bath = 'Bath',
/**
* The property has access to a community spa.
*/
Community = 'Community',
/**
* The spa is lined or made of fiberglass.
*/
Fiberglass = 'Fiberglass',
/**
* The spa is lined with gunite.
*/
Gunite = 'Gunite',
/**
* The spa is heated.
*/
Heated = 'Heated',
/**
* The spa is built into the ground.
*/
InGround = 'InGround',
/**
* The property has no spa.
*/
None = 'None',
/**
* The spa is privately owned or is secluded.
*/
Private = 'Private',
/**
* See the remarks fields for more information about the spa.
*/
SeeRemarks = 'SeeRemarks',
}