node-ovh-ts
Version:
OVH API wrapper library for TypeScript
16 lines (13 loc) • 449 B
TypeScript
import { EmailExchangeDeviceActiveSyncStateEnum } from './EmailExchangeDeviceActiveSyncStateEnum.js';
type EmailExchangeExchangeServiceDevice = {
IMEI?: string;
creationDate?: Date;
deviceId?: string;
deviceModel?: string;
deviceState?: EmailExchangeDeviceActiveSyncStateEnum;
guid?: string;
identity?: string;
lastUpdate?: Date | null;
taskPendingId?: number;
};
export { EmailExchangeExchangeServiceDevice };