UNPKG

@realestate/types

Version:

Types for real estate

47 lines (41 loc) 1.52 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 LeaseRenewalCompensation { /** * For details on about additional selling office compensation for lease renewals, contact the listing * agent. */ CallListingAgent = 'CallListingAgent', /** * {@link https://ddwiki.reso.org/display/DDW17/Call+Listing+Office} * * For details on about additional selling office compensation for lease renewals, contact the listing * office. */ CallListingOffice = 'CallListingOffice', /** * {@link https://ddwiki.reso.org/display/DDW17/Commission+Paid+On+Tenant+Purchase} * * Additional commission is paid in the event the tenant purchase the property. */ CommissionPaidOnTenantPurchase = 'CommissionPaidOnTenantPurchase', /** * {@link https://ddwiki.reso.org/display/DDW17/No+Renewal+Commission} * * There is no additional commission if the tenant renews or extends the lease. */ NoRenewalCommission = 'NoRenewalCommission', /** * {@link https://ddwiki.reso.org/display/DDW17/Renewal+Commission+Paid} * * There is additional commission paid if the tenant renews the lease. */ RenewalCommissionPaid = 'RenewalCommissionPaid', }