UNPKG

@realestate/types

Version:

Types for real estate

82 lines (71 loc) 2.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 TeamMemberType { /** * {@link https://ddwiki.reso.org/display/DDW17/Administration+Assistant} * * The member of a team who assists with administrative tasks. */ AdministrationAssistant = 'AdministrationAssistant', /** * {@link https://ddwiki.reso.org/display/DDW17/Buyer+Agent} * * A member of the real estate team. */ BuyerAgent = 'BuyerAgent', /** * {@link https://ddwiki.reso.org/display/DDW17/Showing+Agent} * * The member of a team who handles showing events. */ ShowingAgent = 'ShowingAgent', /** * {@link https://ddwiki.reso.org/display/DDW17/Lead+Manager} * * The member of the team who is the lead manager. */ LeadManager = 'LeadManager', /** * {@link https://ddwiki.reso.org/display/DDW17/Listing+Agent} * * The member of a team who lists properties. */ ListingAgent = 'ListingAgent', /** * {@link https://ddwiki.reso.org/display/DDW17/Marketing+Assistant} * * The member of a team who assists with marketing. */ MarketingAssistant = 'MarketingAssistant', /** * {@link https://ddwiki.reso.org/display/DDW17/Operations+Manager} * * The member of the team who manages operations. */ OperationsManager = 'OperationsManager', /** * {@link https://ddwiki.reso.org/display/DDW17/Team+Lead} * * The leading member of a team. */ TeamLead = 'TeamLead', /** * {@link https://ddwiki.reso.org/display/DDW17/Team+Member+Lead} * * A member of the real estate team. */ TeamMember = 'TeamMember', /** * {@link https://ddwiki.reso.org/display/DDW17/Transaction+Coordinator} * * The member of a team who handles transaction details. */ TransactionCoordinator = 'TransactionCoordinator', }