@realestate/types
Version:
Types for real estate
64 lines (55 loc) • 1.38 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 PetsAllowed {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Breed+Restrictions}
*
* There are breed restrictions on allowed pets.
*/
BreedRestrictions = 'BreedRestrictions',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Call}
*
* Call to inquire about pet restrictions.
*/
Call = 'Call',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Cats+OK}
*
* Cats are allowed.
*/
CatsOk = 'CatsOk',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Dogs+OK}
*
* Dogs are allowed.
*/
DogsOk = 'DogsOk',
/**
* No pets are allowed.
*/
No = 'No',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Number+Limit}
*
* There is a limit on the number of pets allowed.
*/
NumberLimit = 'NumberLimit',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Size+Limit}
*
* There are size restrictions on allowed pets.
*/
SizeLimit = 'SizeLimit',
/**
* All pets are allowed.
*/
Yes = 'Yes',
}