@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
21 lines • 811 B
TypeScript
import { ActiveSyncPolicyEnum } from './ActiveSyncPolicyEnum';
/** Protocol access policy for this Exchange service */
export interface ExchangeServiceProtocol {
/** IMAP protocol enabled on this Exchange service */
IMAP: boolean;
/** POP protocol enabled on this Exchange service */
POP: boolean;
/** ActiveSync protocol enabled on this Exchange service */
activeSync: boolean;
/** ActiveSync policy to apply at device's first connection */
activeSyncPolicy: ActiveSyncPolicyEnum;
/** Creation date */
creationDate: string;
/** Last update date */
lastUpdate?: string;
/** Pending task id */
taskPendingId: number;
/** Web mail protocol enabled on this Exchange service */
webMail: boolean;
}
//# sourceMappingURL=ExchangeServiceProtocol.d.ts.map