@realestate/types
Version:
Types for real estate
97 lines (84 loc) • 2.87 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 ChangeType {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Active}
*
* The change to the listing was a change of status to Active provided the measurement of the area.
*/
Active = 'Active',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Active+Under+Contract}
*
* The change to the listing was a change of status to Active Under Contract provided the measurement of the
* area.
*/
ActiveUnderContract = 'ActiveUnderContract',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Back+On+Market}
*
* The change to the listing was a change of status to Back On Market provided the measurement of the area.
*/
BackOnMarket = 'BackOnMarket',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Canceled}
*
* The change to the listing was a change of status to Canceled provided the measurement of the area.
*/
Canceled = 'Canceled',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Closed}
*
* The change to the listing was a change of status to Closed provided the measurement of the area.
*/
Closed = 'Closed',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Deleted}
*
* The change to the listing was a change of status to Deleted provided the measurement of the area.
*/
Deleted = 'Deleted',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Expired}
*
* The change to the listing was a change of status to Expired provided the measurement of the area.
*/
Expired = 'Expired',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Hold}
*
* The change to the listing was a change of status to Hold provided the measurement of the area.
*/
Hold = 'Hold',
/**
* {@link https://ddwiki.reso.org/display/DDW17/New+Listing}
*
* The listing is new and hasn't had any status or price changes since its original input.
*/
NewListing = 'NewListing',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Pending}
*
* The change to the listing was a change of status to Pending provided the measurement of the area.
*/
Pending = 'Pending',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Price+Change}
*
* The change to the listing was a change to the ListPrice.
*/
PriceChange = 'PriceChange',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Withdrawn}
*
* The change to the listing was a change of status to Withdrawn provided the measurement of the area.
*/
Withdrawn = 'Withdrawn',
}