@realestate/types
Version:
Types for real estate
33 lines (29 loc) • 989 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 RoadResponsibility {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Private+Maintained+Road}
*
* The property's road is privately maintained.
*/
PrivateMaintainedRoad = 'PrivateMaintainedRoad',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Public+Maintained+Road}
*
* The property's road is publicly maintained.
*/
PublicMaintainedRoad = 'PublicMaintainedRoad',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Road+Maintenance+Agreement}
*
* The property has a road maintenance agreement.
*/
RoadMaintenanceAgreement = 'RoadMaintenanceAgreement',
}