@realestate/types
Version:
Types for real estate
34 lines (29 loc) • 887 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 ResourceName {
/**
* This record is related to another record in the Contacts resource.
*/
Contacts = 'Contacts',
/**
* This record is related to another record in the Member resource.
*/
Member = 'Member',
/**
* This record is related to another record in the Office resource.
*/
Office = 'Office',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Property}
*
* This record is related to another record in the Property resource.
*/
Property = 'Property',
}