UNPKG

@realestate/types

Version:

Types for real estate

61 lines (52 loc) 1.55 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 LockBoxType { /** * Call the listing office for information about accessing the property. */ CallListingOffice = 'CallListingOffice', /** * {@link https://ddwiki.reso.org/display/DDW17/Call+Seller+Direct} * * Call the seller directly to arrange for access to the property. */ CallSellerDirect = 'CallSellerDirect', /** * {@link https://ddwiki.reso.org/display/DDW17/Combo} * * The lockbox on the property is opened via combination. See remarks or contact the agent/office for the * combination. */ Combo = 'Combo', /** * There is no lockbox on the property. */ None = 'None', /** * A lock box type not included in this list. */ Other = 'Other', /** * See remarks for details about the lockbox and accessing the property. */ SeeRemarks = 'SeeRemarks', /** * {@link https://ddwiki.reso.org/display/DDW17/SentriLock} * * The lockbox is from SentriLock and requires a SentriLock key or access code. */ Sentrilock = 'Sentrilock', /** * {@link https://ddwiki.reso.org/display/DDW17/Supra} * * The lockbox is from Supra and requires a Supra key. */ Supra = 'Supra', }