UNPKG

@realestate/types

Version:

Types for real estate

91 lines (78 loc) 2.57 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 Possession { /** * {@link https://ddwiki.reso.org/display/DDW17/Close+Of+Escrow} * * Possession is passed to the buyer at the close of escrow. */ CloseOfEscrow = 'CloseOfEscrow', /** * {@link https://ddwiki.reso.org/display/DDW17/Close+Plus+1+Day} * * Possession is passed to the buyer one day after the close of escrow. */ ClosePlus1Day = 'ClosePlus1Day', /** * {@link https://ddwiki.reso.org/display/DDW17/Close+Plus+2+Days} * * Possession is passed to the buyer two days after the close of escrow. */ ClosePlus2Days = 'ClosePlus2Days', /** * {@link https://ddwiki.reso.org/display/DDW17/Close+Plus+30+Days} * * Possession is passed to the buyer 30 days after the close of escrow. */ ClosePlus30Days = 'ClosePlus30Days', /** * {@link https://ddwiki.reso.org/display/DDW17/Close+Plus+3+Days} * * Possession is passed to the buyer 3 days after the close of escrow. */ ClosePlus3Days = 'ClosePlus3Days', /** * {@link https://ddwiki.reso.org/display/DDW17/Close+Plus+3+to+5+Days} * * Possession is passed to the buyer 3 to 5 days after the close of escrow. */ ClosePlus3To5Days = 'ClosePlus3To5Days', /** * Timing of the passing of possession to the buyer is negotiable. */ Negotiable = 'Negotiable', /** * A type of possession not included in this list. */ Other = 'Other', /** * {@link https://ddwiki.reso.org/display/DDW17/Rental+Agreement} * * Possession is stipulated in the rental agreement. */ RentalAgreement = 'RentalAgreement', /** * See the listing/agent remarks for more information on possession. */ SeeRemarks = 'SeeRemarks', /** * {@link https://ddwiki.reso.org/display/DDW17/Seller+Rent+Back} * * Possession is determined by the details of the seller rent back agreement, which is in most cases the * seller will remain resident. */ SellerRentBack = 'SellerRentBack', /** * {@link https://ddwiki.reso.org/display/DDW17/Subject+To+Tenant+Rights} * * The terms of the transfer of possession are subject to the rights of the current tenant. */ SubjectToTenantRights = 'SubjectToTenantRights', }