UNPKG

@realestate/types

Version:

Types for real estate

69 lines (59 loc) 1.77 kB
/** * 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 HoursDaysOfOperation { /** * {@link https://ddwiki.reso.org/display/DDW17/Evenings+Only} * * The business being sold is open in the evenings only. */ EveningsOnly = 'EveningsOnly', /** * {@link https://ddwiki.reso.org/display/DDW17/Open+24+Hours} * * The business being sold is open 24 hours per day. */ Open24Hours = 'Open24Hours', /** * {@link https://ddwiki.reso.org/display/DDW17/Open+7+Days} * * The business being sold is open 7 days per week. */ Open7Days = 'Open7Days', /** * The business being sold is open 8 hours per day. */ Open8HoursDay = 'Open8HoursDay', /** * The business being sold is open less than 8 hours per day. */ OpenLessThan8HoursDay = 'OpenLessThan8HoursDay', /** * {@link https://ddwiki.reso.org/display/DDW17/Open+Monday-Friday} * * The business being sold is open Monday through Friday. */ OpenMondayFriday = 'OpenMondayFriday', /** * The business being sold is open more than 8 hours/day. */ OpenOver8HoursDay = 'OpenOver8HoursDay', /** * {@link https://ddwiki.reso.org/display/DDW17/Open+Saturday} * * The business being sold is open on Saturdays. */ OpenSaturday = 'OpenSaturday', /** * {@link https://ddwiki.reso.org/display/DDW17/Open+Sunday} * * The business being sold is open on Sundays. */ OpenSunday = 'OpenSunday', }