UNPKG

@realestate/types

Version:

Types for real estate

133 lines (116 loc) 4.1 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 ReasonActiveOrDisabled { /** * {@link https://ddwiki.reso.org/display/DDW17/Agent+Disabled} * * The agent has disabled this auto email. */ AgentDisabled = 'AgentDisabled', /** * {@link https://ddwiki.reso.org/display/DDW17/Client+Disabled} * * The auto email has been disabled by the client/recipient. */ ClientDisabled = 'ClientDisabled', /** * {@link https://ddwiki.reso.org/display/DDW17/Concierge+Notification} * * The auto email is on hold pending concierge approval by the member. The auto email is temporarily * disabled. */ ConciergeNotification = 'ConciergeNotification', /** * {@link https://ddwiki.reso.org/display/DDW17/Final+Ignored+Warning} * * The final warning that the auto email has not been viewed by the client/recipient and may be inactivated * due to being ignored. The auto email is still active. */ FinalIgnoredWarning = 'FinalIgnoredWarning', /** * {@link https://ddwiki.reso.org/display/DDW17/Ignored} * * The auto email was not viewed by the client/recipient in the time frame designated by the host system. * The auto email is disabled. */ Ignored = 'Ignored', /** * {@link https://ddwiki.reso.org/display/DDW17/Initial+Ignored+Warning} * * The first warning that the auto email has not been viewed by the client/recipient. The auto email is * still active. */ InitialIgnoredWarning = 'InitialIgnoredWarning', /** * {@link https://ddwiki.reso.org/display/DDW17/Invalid} * * The auto email is no longer valid per some conditions set by the host system. The auto email is disabled. */ Invalid = 'Invalid', /** * {@link https://ddwiki.reso.org/display/DDW17/No+Listings+Found} * * The auto email has not found any listings matching the criteria and been disabled per the host system * rules. */ NoListingsFound = 'NoListingsFound', /** * {@link https://ddwiki.reso.org/display/DDW17/No+Listings+Found+Warning} * * The auto email has not found any listings matching the criteria and may be disabled. The auto email is * still active. */ NoListingsFoundWarning = 'NoListingsFoundWarning', /** * {@link https://ddwiki.reso.org/display/DDW17/No+One+To+Send+To} * * There is no valid email address and the auto email has been inactivated. */ NoOneToSendTo = 'NoOneToSendTo', /** * {@link https://ddwiki.reso.org/display/DDW17/Over+Limit} * * The auto email has reached the limit of listing results as set by the host system. The auto email is * disabled. */ OverLimit = 'OverLimit', /** * {@link https://ddwiki.reso.org/display/DDW17/Re-Activated} * * The auto email has was previously disabled and has been set back to active. */ ReActivated = 'ReActivated', /** * {@link https://ddwiki.reso.org/display/DDW17/Revised} * * The auto email has been revised and is active. */ Revised = 'Revised', /** * {@link https://ddwiki.reso.org/display/DDW17/Search+Failing} * * The auto email's search criteria is failing and should be reviewed by the host system. The auto email is * disabled. */ SearchFailing = 'SearchFailing', /** * {@link https://ddwiki.reso.org/display/DDW17/Welcome+Email+Ignored} * * The initial auto email has not been viewed by the client/recipient and the auto email has been * deactivated. */ WelcomeEmailIgnored = 'WelcomeEmailIgnored', /** * {@link https://ddwiki.reso.org/display/DDW17/Welcome+Email+Ignored+Warning} * * The initial auto email has not been viewed by the client/recipient. The auto email is still active. */ WelcomeEmailIgnoredWarning = 'WelcomeEmailIgnoredWarning', }