@realestate/types
Version:
Types for real estate
85 lines (73 loc) • 2.29 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 OfficeType {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Affiliate}
*
* The record in the office roster is an affiliate office.
*/
Affiliate = 'Affiliate',
/**
* The record in the office roster is an appraiser office.
*/
Appraiser = 'Appraiser',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Association}
*
* The record in the office roster is an association office.
*/
Association = 'Association',
/**
* {@link https://ddwiki.reso.org/display/DDW17/MLS}
*
* The record in the office roster is an MLS office.
*/
Mls = 'Mls',
/**
* {@link https://ddwiki.reso.org/display/DDW17/MLS+Only+Branch}
*
* The record in the office roster is a broker branch office who receives only MLS service.
*/
MlsOnlyBranch = 'MlsOnlyBranch',
/**
* {@link https://ddwiki.reso.org/display/DDW17/MLS+Only+Firm}
*
* The record in the office roster is a broker Firm office who receives only MLS service.
*/
MlsOnlyFirm = 'MlsOnlyFirm',
/**
* {@link https://ddwiki.reso.org/display/DDW17/MLS+Only+Office}
*
* The record in the office roster is a broker office who receives only MLS service.
*/
MlsOnlyOffice = 'MlsOnlyOffice',
/**
* The record in the office roster is an non member/vendor office.
*/
NonMemberVendor = 'NonMemberVendor',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Realtor+Branch+Office}
*
* The record in the office roster is an realtor branch office .
*/
RealtorBranchOffice = 'RealtorBranchOffice',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Realtor+Firm}
*
* The record in the office roster is an realtor firm office.
*/
RealtorFirm = 'RealtorFirm',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Realtor+Office}
*
* The record in the office roster is an realtor office.
*/
RealtorOffice = 'RealtorOffice',
}