@realestate/types
Version:
Types for real estate
31 lines (27 loc) • 815 B
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 OpenHouseType {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Broker}
*
* The open house is only open to brokers, and at times agents.
*/
Broker = 'Broker',
/**
* The open house is only open to the members of a particular office(s).
*/
Office = 'Office',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Public}
*
* The open house is open to the general public.
*/
Public = 'Public',
}