@realestate/types
Version:
Types for real estate
47 lines (39 loc) • 1.03 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 PreferredPhone {
/**
* The contact prefers the use of their direct phone.
*/
Direct = 'Direct',
/**
* The contact prefers the use of their home phone.
*/
Home = 'Home',
/**
* The contact prefers the use of their mobile phone.
*/
Mobile = 'Mobile',
/**
* The contact prefers the use of their office phone.
*/
Office = 'Office',
/**
* The contact prefers the use of their other phone.
*/
Other = 'Other',
/**
* The contact prefers the use of their toll free phone.
*/
TollFree = 'TollFree',
/**
* The contact prefers the use of their voicemail phone.
*/
Voicemail = 'Voicemail',
}