import { DeviceActiveSyncStateEnum } from './DeviceActiveSyncStateEnum';
/** Get the list of your ActiveSync devices registered on this Exchange service */
export interface ExchangeServiceDevice {
    /** International Mobile Equipment Identity */
    IMEI: string;
    /** Creation date */
    creationDate: string;
    /** Device Id */
    deviceId: string;
    /** Model device */
    deviceModel: string;
    /** Device State */
    deviceState: DeviceActiveSyncStateEnum;
    /** user guid */
    guid: string;
    /** Exchange identity */
    identity: string;
    /** Last update date */
    lastUpdate?: string;
    /** Pending task id */
    taskPendingId: number;
}
//# sourceMappingURL=ExchangeServiceDevice.d.ts.map