UNPKG

@realestate/types

Version:

Types for real estate

40 lines (35 loc) 1.13 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 OwnershipType { /** * {@link https://ddwiki.reso.org/display/DDW17/Corporation} * * The ownership type of the business being sold is a corporation. */ Corporation = 'Corporation', /** * {@link https://ddwiki.reso.org/display/DDW17/LLC} * * The ownership type of the business being sold is a limited liability corporation. */ Llc = 'Llc', /** * {@link https://ddwiki.reso.org/display/DDW17/Partnership} * * The ownership type of the business being sold is a partnership. */ Partnership = 'Partnership', /** * {@link https://ddwiki.reso.org/display/DDW17/Sole+Proprietor} * * The ownership type of the business being sold is a sole proprietor. */ SoleProprietor = 'SoleProprietor', }