@realestate/types
Version:
Types for real estate
43 lines (37 loc) • 1.14 kB
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 DeviceType {
/**
* {@link https://ddwiki.reso.org/display/DDW17/Desktop}
*
* The Actor's device has been identified as a desktop device by the source
*/
Desktop = 'Desktop',
/**
* The Actor's device has been identified as a mobile device by the source
*/
Mobile = 'Mobile',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Tablet}
*
* The Actor's device has been identified as a tablet device by the source
*/
Tablet = 'Tablet',
/**
* The Actor's device could not be identified by the source
*/
Unknown = 'Unknown',
/**
* {@link https://ddwiki.reso.org/display/DDW17/Wearable}
*
* The Actor's device has been identified as a wearable device by the source
*/
Wearable = 'Wearable',
}