@realestate/types
Version:
Types for real estate
82 lines (67 loc) • 1.45 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 OtherPhoneType {
/**
* This is the contact's direct number.
*/
Direct = 'Direct',
/**
* This is the contact's fax.
*/
Fax = 'Fax',
/**
* This is the contact's first preferred phone.
*/
First = 'First',
/**
* This is the contact's home phone.
*/
Home = 'Home',
/**
* This is the contact's mobile phone.
*/
Mobile = 'Mobile',
/**
* This is the contact's modem.
*/
Modem = 'Modem',
/**
* This is the contact's office phone.
*/
Office = 'Office',
/**
* This is the contact's pager.
*/
Pager = 'Pager',
/**
* This is the contact's preferred phone.
*/
Preferred = 'Preferred',
/**
* This is the contact's second preferred phone.
*/
Second = 'Second',
/**
* This is the contact's SMS/text number.
*/
Sms = 'Sms',
/**
* This is the contact's third preferred phone.
*/
Third = 'Third',
/**
* This is the contact's toll free number.
*/
TollFree = 'TollFree',
/**
* This is the contact's voicemail.
*/
Voicemail = 'Voicemail',
}