UNPKG

@realestate/types

Version:

Types for real estate

57 lines (49 loc) 1.34 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 Permission { /** * {@link https://ddwiki.reso.org/display/DDW17/Agent+Only} * * The image or document is for agent use only. */ AgentOnly = 'AgentOnly', /** * {@link https://ddwiki.reso.org/display/DDW17/Firm+Only} * * The image or document is for firm use only. */ FirmOnly = 'FirmOnly', /** * {@link https://ddwiki.reso.org/display/DDW17/IDX} * * The image or document is okay for IDX use. */ Idx = 'Idx', /** * {@link https://ddwiki.reso.org/display/DDW17/Office+Only} * * The image or document is for office use only. */ OfficeOnly = 'OfficeOnly', /** * The image or document is private and should have limited distribution. */ Private = 'Private', /** * The image or document may be viewed by the public. */ Public = 'Public', /** * {@link https://ddwiki.reso.org/display/DDW17/VOW} * * The image or document is okay for VOW use. */ Vow = 'Vow', }