@realestate/types
Version:
Types for real estate
115 lines (99 loc) • 2.94 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 DailySchedule {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Friday+AM}
*
* The prospect (auto email) will be sent every Friday morning.
*/
FridayAM = 'FridayAM',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Friday+PM}
*
* The prospect (auto email) will be sent every Friday evening.
*/
FridayPM = 'FridayPM',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Monday+AM}
*
* The prospect (auto email) will be sent every Monday morning.
*/
MondayAM = 'MondayAM',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Monday+PM}
*
* The prospect (auto email) will be sent every Monday evening.
*/
MondayPM = 'MondayPM',
/**
* The prospect (auto email) has not been setup for any daily schedule.
*/
None = 'None',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Saturday+AM}
*
* The prospect (auto email) will be sent every Saturday morning.
*/
SaturdayAM = 'SaturdayAM',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Saturday+PM}
*
* The prospect (auto email) will be sent every Saturday evening.
*/
SaturdayPM = 'SaturdayPM',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Sunday+AM}
*
* The prospect (auto email) will be sent every Sunday morning.
*/
SundayAM = 'SundayAM',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Sunday+PM}
*
* The prospect (auto email) will be sent every Sunday evening.
*/
SundayPM = 'SundayPM',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Thursday+AM}
*
* The prospect (auto email) will be sent every Thursday morning.
*/
ThursdayAM = 'ThursdayAM',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Thursday+PM}
*
* The prospect (auto email) will be sent every Thursday evening.
*/
ThursdayPM = 'ThursdayPM',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Tuesday+AM}
*
* The prospect (auto email) will be sent every Tuesday morning.
*/
TuesdayAM = 'TuesdayAM',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Tuesday+PM}
*
* The prospect (auto email) will be sent every Tuesday evening.
*/
TuesdayPM = 'TuesdayPM',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Wednesday+AM}
*
* The prospect (auto email) will be sent every Wednesday morning.
*/
WednesdayAM = 'WednesdayAM',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Wednesday+PM}
*
* The prospect (auto email) will be sent every Wednesday evening.
*/
WednesdayPM = 'WednesdayPM',
}