UNPKG

@realestate/types

Version:

Types for real estate

147 lines (127 loc) 3.96 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 EventType { /** * {@link https://ddwiki.reso.org/display/DDW17/Clicked+on+Email+Address} * * The Actor engaged in the act of emailing to the Object's email address (note: does not indicate an email * was sent) */ ClickedOnEmailAddress = 'ClickedOnEmailAddress', /** * {@link https://ddwiki.reso.org/display/DDW17/Clicked+on+Phone+Number} * * The Actor clicked on a phone number link associated with the Object */ ClickedOnPhoneNumber = 'ClickedOnPhoneNumber', /** * {@link https://ddwiki.reso.org/display/DDW17/Click+to+Primary+Hosted+Site} * * The Actor was referred to the Object's primary hosted website */ ClickToPrimaryHostedSite = 'ClickToPrimaryHostedSite', /** * {@link https://ddwiki.reso.org/display/DDW17/Comments} * * Comments were made on the Object */ Comments = 'Comments', /** * {@link https://ddwiki.reso.org/display/DDW17/Detailed+View} * * The object was the main focal point in the Actor's view. */ DetailedView = 'DetailedView', /** * The Actor has reacted "negatively" to the object. */ Discard = 'Discard', /** * {@link https://ddwiki.reso.org/display/DDW17/Driving+Directions} * * The Actor engaged in driving directions with the Object */ DrivingDirections = 'DrivingDirections', /** * {@link https://ddwiki.reso.org/display/DDW17/Exit+Detailed+View} * * The actor left the detailed view. */ ExitDetailedView = 'ExitDetailedView', /** * {@link https://ddwiki.reso.org/display/DDW17/Favorited} * * The Actor has reacted "positively" to the object. */ Favorited = 'Favorited', /** * {@link https://ddwiki.reso.org/display/DDW17/Maybe} * * The Actor has reacted "possibly positive" to the object. */ Maybe = 'Maybe', /** * {@link https://ddwiki.reso.org/display/DDW17/Non-Detailed+View} * * The object appeared in the Actor's view but was not the main focal point.® */ NonDetailedView = 'NonDetailedView', /** * {@link https://ddwiki.reso.org/display/DDW17/Object+Modified} * * The tracking Obect was modified in some way. */ ObjectModified = 'ObjectModified', /** * {@link https://ddwiki.reso.org/display/DDW17/Photo+Gallery} * * The Actor participated in a photo gallery display */ PhotoGallery = 'PhotoGallery', /** * {@link https://ddwiki.reso.org/display/DDW17/Printed} * * The Actor printed the object */ Printed = 'Printed', /** * {@link https://ddwiki.reso.org/display/DDW17/Property+Videos} * * The Actor has interacted with a property video with the Object */ PropertyVideos = 'PropertyVideos', /** * {@link https://ddwiki.reso.org/display/DDW17/Search} * * The tracking Object is data is part of a search and will contain more than one result. Normally, the * search result data will be presented in the ObjectCollection field and include ALL the listings that were * part of the search. */ Search = 'Search', /** * {@link https://ddwiki.reso.org/display/DDW17/Share} * * The sharing of a listing to another media or entity (includes social media sites, IM's, email and SMS * messages) */ Share = 'Share', /** * {@link https://ddwiki.reso.org/display/DDW17/Submission+of+Lead+Form} * * The Actor has submitted a lead form */ SubmissionOfLeadForm = 'SubmissionOfLeadForm', /** * {@link https://ddwiki.reso.org/display/DDW17/Virtual+Tour} * * The Actor viewed the Object's virtual tour */ VirtualTour = 'VirtualTour', }