@realestate/types
Version:
Types for real estate
109 lines (89 loc) • 2.1 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 EventTarget {
/**
* The EventType used a destination pertaining to the listing agent (i.e. the actor's submission of lead
* form went to the Listing Agent's contact information)
*/
Agent = 'Agent',
/**
* The EventType used a destination pertaining to the listing broker (i.e. the "Clicked on Phone Number"
* EventType is using the Broker's contact information)
*/
Broker = 'Broker',
/**
* The Object was shared on Digg
*/
Digg = 'Digg',
/**
* The Object was sent in an email
*/
Email = 'Email',
/**
* The Object was shared on Facebook
*/
Facebook = 'Facebook',
/**
* The Object was shared via Facebook Messenger
*/
FacebookMessenger = 'FacebookMessenger',
/**
* The Object was shared to Google Plus
*/
Googleplus = 'Googleplus',
/**
* The Object was shared via iMessage
*/
Imessage = 'Imessage',
/**
* The Object was shared on Instagram
*/
Instagram = 'Instagram',
/**
* The Object was shared on LinkedIn
*/
Linkedin = 'Linkedin',
/**
* The Object was pinned on Pinterest
*/
Pinterest = 'Pinterest',
/**
* The Object was shared on Reddit
*/
Reddit = 'Reddit',
/**
* The Object was shared via Slack
*/
Slack = 'Slack',
/**
* The Object was sent in an SMS message
*/
Sms = 'Sms',
/**
* The Object was shared on Snapchat
*/
Snapchat = 'Snapchat',
/**
* The Object was shared on StumbleUpon
*/
Stumbleupon = 'Stumbleupon',
/**
* The Object was shared on Tumblr
*/
Tumblr = 'Tumblr',
/**
* The Object was tweeted on Twitter
*/
Twitter = 'Twitter',
/**
* The Object was shared on YouTube
*/
Youtube = 'Youtube',
}