@realestate/types
Version:
Types for real estate
33 lines (28 loc) • 990 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 CompensationType {
/**
* The value entered in the BuyerAgencyCompensation field is in dollars.
*/
Dollars = 'Dollars',
/**
* A compensation type not included in this list
*/
Other = 'Other',
/**
* The value entered in the BuyerAgencyCompensation field is a percent of the gross compensation.
*/
Percent = 'Percent',
/**
* The Buyer Agency Compensation Type is something other than % or $ or is some special combination of $, %,
* and other compensation types. See the applicable remarks field for more details about the compensation.
*/
SeeRemarks = 'SeeRemarks',
}