@realestate/types
Version:
Types for real estate
35 lines (31 loc) • 1.01 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 Attended {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Agent}
*
* A licensed real estate agent will be present at the open house event.
*/
Agent = 'Agent',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Seller}
*
* A licensed real estate agent will not be present and the property owner will be present at the open house
* event.
*/
Seller = 'Seller',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Unattended}
*
* The open house event will not be attended. Access will normally be via lockbox or other pre-arranged
* means.
*/
Unattended = 'Unattended',
}