@realestate/types
Version:
Types for real estate
34 lines (30 loc) • 1.07 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 ContactListingPreference {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Discard}
*
* The contact has flagged to discard the given listing. The contact is not interested in the given listing.
*/
Discard = 'Discard',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Favorite}
*
* The contact has flagged the given listing as a favorite. The contact is interested in the given listing.
*/
Favorite = 'Favorite',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Possibility}
*
* The contact has flagged the given listing as a possibility. The contact might be interested in the given
* listing.
*/
Possibility = 'Possibility',
}