@realestate/types
Version:
Types for real estate
33 lines (29 loc) • 905 B
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 Concessions {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Call+Listing+Agent}
*
* Call the listing agent for information about concessions made/offered by the seller.
*/
CallListingAgent = 'CallListingAgent',
/**
* {@link https://ddwiki.reso.org/display/DDW17/No}
*
* There are no concessions included with this listing.
*/
No = 'No',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Yes}
*
* There are concessions that are part of the listing/sale.
*/
Yes = 'Yes',
}