UNPKG

dt-common-device

Version:

A secure and robust device management library for IoT applications

36 lines (35 loc) 783 B
export declare enum PmsProvider { Cloudbeds = "Cloudbeds", StayNTouch = "StayNTouch", HotelKey = "HotelKey", Yanolja = "Yanolja", SMOOBU = "Smoobu", WEBREZPRO = "Webrezpro", MEWS = "Mews" } export interface IPmsSchedule { id: string; propertyId: string; referenceId: string; startTime: string; endTime: string; source: string; status: string; isExpired: boolean; isDeleted: boolean; createdAt: string; updatedAt: string; createdBy: string; } export interface IGuest { id: string; firstName: string; lastName: string; email: string; phoneNumber: string; phoneNumberCountryCode: string; guestRefId?: string; countryCode: string; createdAt: string; updatedAt: string; }