@realestate/types
Version:
Types for real estate
39 lines (34 loc) • 1.21 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 SyndicateTo {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Homes.com}
*
* The Broker, or Member if permitted by the Broker, is allowing their listings to be sent to Homes.com.
*/
HomesDotCom = 'HomesDotCom',
/**
* {@link https://ddwiki.reso.org/display/DDW17/ListHub}
*
* The Broker, or Member if permitted by the Broker, is allowing their listings to be sent to ListHub.com.
*/
Listhub = 'Listhub',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Realtor.com}
*
* The Broker, or Member if permitted by the Broker, is allowing their listings to be sent to Realtor.com.
*/
RealtorDotCom = 'RealtorDotCom',
/**
* The Broker, or Member if permitted by the Broker, is allowing their listings to be sent to Zillow and
* Trulia.
*/
ZillowTrulia = 'ZillowTrulia',
}