UNPKG

@realestate/types

Version:

Types for real estate

31 lines (27 loc) 918 B
/** * 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 ScheduleType { /** * {@link https://ddwiki.reso.org/display/DDW17/ASAP} * * The prospect (auto email) will be sent as soon as possible through each day. Actual time is determined by * listing additions/changes that match the given criteria and by the host system's delivery * policy/schedule. */ ASAP = 'ASAP', /** * The prospect (auto email) will be sent according to the Daily Schedule. */ Daily = 'Daily', /** * The prospect (auto email) will be sent once per month. */ Monthly = 'Monthly', }