UNPKG

@realestate/types

Version:

Types for real estate

33 lines (29 loc) 936 B
/** * 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 LaborInformation { /** * {@link https://ddwiki.reso.org/display/DDW17/Employee+License+Required} * * Special licensing is required for employees. */ EmployeeLicenseRequired = 'EmployeeLicenseRequired', /** * {@link https://ddwiki.reso.org/display/DDW17/Non-Union} * * A labor union(s) are not currently established with the given business. */ NonUnion = 'NonUnion', /** * {@link https://ddwiki.reso.org/display/DDW17/Union} * * A labor union(s) are established with the given business. */ Union = 'Union', }