UNPKG

@realestate/types

Version:

Types for real estate

43 lines (37 loc) 1.11 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 ActorType { /** * The event was generated by what the source defines as a real estate professional */ Agent = 'Agent', /** * {@link https://ddwiki.reso.org/display/DDW17/Bot} * * The event was generated by a bot or some type of scripting tool */ Bot = 'Bot', /** * {@link https://ddwiki.reso.org/display/DDW17/Client} * * The event was generated by what the source defines as a registered client */ Client = 'Client', /** * {@link https://ddwiki.reso.org/display/DDW17/Consumer} * * The event was generated by what the source defines as a consumer */ Consumer = 'Consumer', /** * The generating Actor type could not be identified */ Unknown = 'Unknown', }