@realestate/types
Version:
Types for real estate
29 lines (25 loc) • 743 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 OpenHouseStatus {
/**
* The open house is active and continuing as scheduled.
*/
Active = 'Active',
/**
* The open house has been canceled.
*/
Canceled = 'Canceled',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Ended}
*
* The open house has ended and is past the scheduled open house date and time.
*/
Ended = 'Ended',
}